javascript - Sometimes when slickgrid is updated the updates don't display -


when update values in slickgrid need reload entire grid. i've checked correct data returned, , is, slickgrid not updated. if click on cells editor values update, it's when reload slickgrid again updates.

the code load grid , load after updates same, or issue come data being similar, won't refresh?

i use function render grid after data ajax call , determine columns display:

    // render grid given columns , data     var rendergrid = function(columns, data) {         grid.setcolumns(columns);         dataview.beginupdate();         dataview.setitems(data);         dataview.endupdate();         grid.setselectedrows([]);         grid.render();     } 

a different question, using grid update functions in this answer, got working.


Comments

Popular posts from this blog

python - pip install -U PySide error -

arrays - C++ error: a brace-enclosed initializer is not allowed here before ‘{’ token -

cytoscape.js - How to add nodes to Dagre layout with Cytoscape -