Multiple jQgrids in jQueryui Tabs

前端 未结 2 1323
抹茶落季
抹茶落季 2021-01-06 10:47

I am having an issue that I need help with. I have 3 jQueryUI Tabs. The first holds a grid of items. The second holds a grid of Work Orders. The third just fires an aler

2条回答
  •  隐瞒了意图╮
    2021-01-06 11:23

    I know its an old question. But I also faced the same issue where in I had multiple jqGrids under the tabs and the loading thing was not working. Adding the below code in the javascript just before defining the grid worked for me:

    $('#Grid').jqGrid('GridDestroy');
    

    For me, the grids on different tabs where the same only the data inside the grid was changing.

提交回复
热议问题