I want to do a realtime grid that will be updated several time in a second. I will use signalR to do the updates. I had a few questions that are maybe not clear fromt he documentation:
1) is it feasible to do the updates several times a second?
2) In my update function will the following be the most efficient way to access and update the data?
function (message) {
var esz4 = $(“#jqxgrid”).jqxGrid(“getrows”)[0];
esz4.TimeStamp = message.LastUpdate;
grid.refreshdata();
}
3) will these setup params maximize the grid refresh and update efficiency?
$(“#jqxgrid”).jqxGrid(
{
width: 1250,
source: dataAdapter,
pageable: false,
autoheight: true,
sortable: false,
altrows: true,
enabletooltips: false,
editable: false,
selectionmode: ‘none’,
4) Any other ideas on making the grid more responsive to millisecond updates?
Thanks a lot.