[progress Communities] [progress Openedge Abl] Forum Post: Kendo Grid Not Refreshing

  • Thread starter Thread starter mflanegan
  • Start date Start date
Status
Not open for further replies.
M

mflanegan

Guest
Hi There, I have a kendo grid that I populate using a search box which sends my filter to the appserver and returns a dataset. I am able to populate my grid with rows the first time but when I try search again the grid is not being populated. I can see that the dataset has been returned from the appserver but the grid is not changing. This is the code I am using to populate the grid: function createGrid(modelFilter) { $('#grid').kendoGrid({ dataSource: { serverFiltering: true, filter: { value: modelFilter }, type: "jsdo", transport: { jsdo: "beAdvSrc1", }, error: function(e) { var obj = JSON.parse(e.xhr.response); alert(obj._retVal); } }, height: 800, groupable: true, sortable: true, reorderable: true, resizable: true, selectable: true, pageable: { refresh: true, pageSizes: true, pageSize: 20, buttonCount: 10 }, columns: [{ field: 'model', title: 'Model', width: 100 }] }); } Does anyone know what I could be missing that is causing the grid not to refresh? Thanks in advance.

Continue reading...
 
Status
Not open for further replies.
Back
Top