I have looked at every example I could find on client-side binding the RadGrid with virtual scrolling and I cannot make it work.
I am using the following Javascript code for binding.
What usually happens, is that all of the data in my dataObject is loading and since there are a large number of records the browser freezes. I've tried to use the DataBinding events for the client-side and server side, but they never seem to fire.
I can't use a webservice for this issue.
Thanks.
I am using the following Javascript code for binding.
var grid = $find("radgrid1");
var mtv = grid.get_masterTableView();
mtv.set_dataSource(DATA); //data is coming from a JSON object
mtv.dataBind();
What usually happens, is that all of the data in my dataObject is loading and since there are a large number of records the browser freezes. I've tried to use the DataBinding events for the client-side and server side, but they never seem to fire.
I can't use a webservice for this issue.
Thanks.