kendo网格与CodeIgniter集成

时间:2013-05-11 08:32:27

标签: php codeigniter kendo-ui

我正在将Kendo UI与我的应用程序集成,这是基于CodeIgniter框架的PHP。我能够从控制器检索数据并在Kendo Grid中显示,但是我无法将选定的网格数据发送到我的控制器以执行其他操作,即。创建,销毁或更新。我在谷歌搜索了这个,但没有得到任何有用的帖子。

因此,如果任何人知道如何从客户端发送数据并在服务器端控制器上接收,那么请回复给我。我将非常感激。

1 个答案:

答案 0 :(得分:0)

视图

read: {
      url: 'http://urdomain/ursystemname/index.php/schoolC/getjson',
      datatype: 'json',
      type: 'GET'
   },

控制器studentC

public function getjson()
    {
        header("Content-type: application/json");
        echo $this->SchoolM->get_allJsonData();
    }

model schoolM

function get_allJsonData()
    {
        $arr = array();
        $this->db->from('school');
        $this->db->order_by("school_name", "asc");
        $query = $this->db->get();
        foreach($query->result_object() as $rows )
        {
            $arr[] = $rows;
        }
        return "{\"data\":" .json_encode($arr). "}";
    }

我希望它有所帮助