我正在尝试使用 jqgrid。我设置了列,并附加到该小部件。一切正常,除了网格不包含数据。它只包含一个空行。列、小部件(如日历)有效。
以下是我的网格设置的开始:
// Create the jqGrid instance
$grid = new jqGridRender($conn);
// Write the SQL Query
$grid->SelectCommand = "SELECT * FROM `$table_name`";
// set the ouput format to json
$grid->dataType = 'json';
$grid->table = "$table_name";
$grid->setPrimaryKeyId("matter_party_ID");
$grid->serialKey = false;
$grid->setColModel();
// Set the url from where we obtain the data
$grid->setUrl(????????);
$grid->addCol(array( etc. etc.
如您所见,我正在使用数据库查询检索数据并将 jason 对象返回到网格:
// Write the SQL Query
$grid->SelectCommand = "SELECT * FROM `$table_name`";
// set the ouput format to json
$grid->dataType = 'json';
但是数据不存在。经过几次无效搜索后,我被建议添加以下行:
$grid->setUrl(????????);
但我不明白。如果已经使用 select 在当前 url 上获取数据,为什么我需要设置 url?你能帮我吗?
谢谢