jqGrid Refreshing Local Data (JSON Object)

前端 未结 6 1732
走了就别回头了
走了就别回头了 2021-01-31 18:44

I\'m trying to use jqGrid with local data and I\'m finding a couple of issues:

I\'m initializing the thing like so:

function refreshGrid($grid, results)
         


        
6条回答
  •  梦谈多话
    2021-01-31 19:06

    question 1:

    If we have defined a pager for grid with client side data, the buttons in pager are automatically disabled. In other words, the current release of grid does not support client side paging and searching.

    local data

    Question 2: Have you tried:

     $("#list").GridUnload();
    

    see here for the differences between gridUnload() and trigger('reloadGrid').

提交回复
热议问题