Jqgrid - 单击一行时 - 展开符号现在可见
Jqgrid - when clicking on a row - expand sign is now visible
我遇到了一些奇怪的事情,我不明白为什么会这样。
选择一行时,展开符号消失。
我的例子:
Jqgrid教程站点中的示例如下:
如您所见,展开符号可见。
这是我的网格代码:
$("#jqGrid").jqGrid({
data: gridData,
//editurl: 'clientArray',
datatype: "local",
page: 1,
colModel: [
{ label: 'Flow Run Id', name: 'FlowRunId', key: true, width: 65 },
{
label: 'Run Status',
name: 'RunStatus',
width: 25,
formatter: statusFormatter,
align: 'center'
},
{
label: 'Run Notes',
name: 'RunNotes',
width: 80,
},
{
label: 'Start Date',
name: 'StartDate',
width: 40,
formatter: "date",
align: 'center',
formatoptions: { srcformat: "ISO8601Long", newformat: "d/m/Y H:i:s A" }
}, {
label: 'End Date',
name: 'EndDate',
width: 40,
formatter: "date",
align: 'center',
formatoptions: { srcformat: "ISO8601Long", newformat: "d/m/Y H:i:s A" }
}
],
viewrecords: true,
width: 1100,
height: 550,
rowNum: 20,
subGrid: true, // set the subGrid property to true to show expand buttons for each row
subGridRowExpanded: showStepRunChildGrid, // javascript function that will take care of showing the child grid
pager: "#jqGridPager"
});
$("#jqGrid").trigger("reloadGrid");
知道为什么会这样吗?
在网上找不到任何东西。
缺少文件
ui-icons_f7a50d_256x240.png(在我的浏览器的 运行 控制台中出现错误)。
将文件添加到我的项目中,现在可以了。
我遇到了一些奇怪的事情,我不明白为什么会这样。
选择一行时,展开符号消失。
我的例子:
Jqgrid教程站点中的示例如下:
如您所见,展开符号可见。
这是我的网格代码:
$("#jqGrid").jqGrid({
data: gridData,
//editurl: 'clientArray',
datatype: "local",
page: 1,
colModel: [
{ label: 'Flow Run Id', name: 'FlowRunId', key: true, width: 65 },
{
label: 'Run Status',
name: 'RunStatus',
width: 25,
formatter: statusFormatter,
align: 'center'
},
{
label: 'Run Notes',
name: 'RunNotes',
width: 80,
},
{
label: 'Start Date',
name: 'StartDate',
width: 40,
formatter: "date",
align: 'center',
formatoptions: { srcformat: "ISO8601Long", newformat: "d/m/Y H:i:s A" }
}, {
label: 'End Date',
name: 'EndDate',
width: 40,
formatter: "date",
align: 'center',
formatoptions: { srcformat: "ISO8601Long", newformat: "d/m/Y H:i:s A" }
}
],
viewrecords: true,
width: 1100,
height: 550,
rowNum: 20,
subGrid: true, // set the subGrid property to true to show expand buttons for each row
subGridRowExpanded: showStepRunChildGrid, // javascript function that will take care of showing the child grid
pager: "#jqGridPager"
});
$("#jqGrid").trigger("reloadGrid");
知道为什么会这样吗? 在网上找不到任何东西。
缺少文件 ui-icons_f7a50d_256x240.png(在我的浏览器的 运行 控制台中出现错误)。 将文件添加到我的项目中,现在可以了。