Welcome Guest, Not a member yet? Register   Sign In
Views, JSON, and HTML
#4

[eluser]CroNiX[/eluser]
Code:
function send_view($view = '')
{

  if ($this->input->is_ajax_request())
  {
    $data['view_html'] = $this->load->view($view, array(), TRUE);
    echo json_encode($data);
    exit;
  }
  else
  {
    $this->load->view($view);
  }
}


Messages In This Thread
Views, JSON, and HTML - by El Forum - 11-09-2012, 11:41 AM
Views, JSON, and HTML - by El Forum - 11-09-2012, 03:06 PM
Views, JSON, and HTML - by El Forum - 11-09-2012, 03:58 PM
Views, JSON, and HTML - by El Forum - 11-09-2012, 04:01 PM
Views, JSON, and HTML - by El Forum - 11-09-2012, 05:14 PM
Views, JSON, and HTML - by El Forum - 11-09-2012, 08:48 PM



Theme © iAndrew 2016 - Forum software by © MyBB