的jqGrid - 在一排,当点击 - 扩大迹象现在是可见

问题描述:

我遇到一些奇怪的事情,我无法弄清楚,为什么它正在发生。 当选择行展开符号消失。 我的例子: enter image description here的jqGrid - 在一排,当点击 - 扩大迹象现在是可见

,并在jqGrid的教程网站的示例如下: enter image description here

正如你可以看到,扩大的迹象是可见的。

这里是我的网格代码:

$("#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(在我的浏览器中运行控制台时出现错误)。 文件添加到我的项目,现在其确定。