I am using an UltraWebGrid v9.2 and I have paging controls both on the grid and outside the grid. I am using LoadOnDemand=”XML” because some of the record sets returned can be in excess of 16k rows, and it works great for speeding up the rendering of the page, but my issue is changing the paging controller outside of the UltraWebGrid with the Async postback. I can not get the outside control to change without a full page refresh. Any suggestions?
i figured it out. i ended up putting a hidden field in the grid, setting the value then used the following javascript to chaneg the dropdowns value
function
AfterXmlHttpResponseProcessed() {
);
row = grid.Rows.getRow(0);
).getValue() ;
document.getElementById(
).selectedIndex = (cell - 1)