zfdatagrid和jqgrid:subgrid未加载

时间:2013-01-27 12:06:35

标签: zend-framework jqgrid subgrid zfdatagrid

我正在使用Zend Framework,这就是我决定使用“zfdatagrid deploy jqgrid”而不是直接使用jqgrid的原因。 我想让jqgrid与subgrid。网格显示正常,但是当我点击展开按钮然后我注意到“正在加载”但没有任何反应。我调试了正确调用“subGridUrl”,因为调试器命中函数我应该从MySQL为子网格选择数据,我试图传递纯json响应(而不是从MySQL中选择)但是仍未显示子网格。也许我不明白必须回答什么?我的回答:

<...>
$responce = new stdClass();
$responce->rows[0]['id']='0';
$responce->rows[0]['cell']=array('0','test1','123','1');
$responce->rows[1]['id']='1';
$responce->rows[1]['cell']=array('1','test2','321','2');
$j = json_encode($responce);
echo $j;
<...>

1 个答案:

答案 0 :(得分:1)

对不起,我的不好。但不是删除我的问题,我会解释我的错误,因为其他人也会这样做......

我在宣布“subGridModel”时犯了一个错误。而是使用数组:

$jqGrid->setJqgParams(array(
    'caption' => 'test report',
    <..>
    'subGrid' => true,
    'subGridUrl' => $this->view->url(array('controller'=>'report','action'=>'indexstoragebalancesubgrid'),'default', true),
    'subgridtype' => 'json',
    'loadonce' => false,
    // next line where problem fixed
    'subGridModel' => array(array("name" => array("ID", "Title", "Code", "Quantity"), "width" => array(10,55,200,80)))
    <..>
));

我写了字符串:

'subGridModel'=>'[{name : ["ID", "Title", "Code", "Quantity"], width : [10,55,200,80]}]'

这就是为什么它在javascript中不起作用。

顺便说一下,你可以看到我在数组中编写了数组。那是因为有一个数组ZFDataGrid生成这样的javascript:

"subGridModel":{"name":["ID","Title","Code","Quantity"],"width":[10,55,200,80]}

而不是:

"subGridModel":[{"name":["ID","Title","Code","Quantity"],"width":[10,55,200,80]}]

jqgrid子网格很重要!