3.2.0

Adding Events

Hi,

I must agree with everyone else - you've done a great job here!

I'm trying use the grid with an ASP.NET application that posts back to the webserver.

I'd like to try and maintain the grid's state between postbacks so it has the same Selection, Sort and Column Widths when the page is reloaded.

I've got this working ok with selected items as I have a hidden input field that gets updated with the 'selectionChanged' event e.g.

<input id="hidSelectedIndex" type="hidden" />
...
obj.setAction("selectionChanged", function() {
hidSelectedIndex.value = this.getSelectionProperty("index");
});

However, I cannot find any events for sorting or column widths? Do these events get thrown or how can I add them to the grid?

Thanks
Colin
October 5,

This topic is archived.

See also:


Back to support forum