I have an editable datagrid. If sorting is applied by clicking any header of datagrid, it works fine. But after that, if data values are changed in any row of datagrid, sorting is applied automatically. How to prevent from this behaviour? i.e. sorting should only be applied if user clicks on any header of datagrid and sorting should not be applied when user modifies data in grid.

link|improve this question
feedback

1 Answer

You have to set sortableColumns to false and handle the headerRelease event, where you do the sorting manually on the data source.

<mx:DataGrid sortableColumns="false" headerRelease="onHeaderRelease(event)" ...
link|improve this answer
Thanks for your reply, My requirement is to stop automatic sorting after editing any column of datagrid i.e if user modifies any column of editable datagrid, itemEditEnd event fires along with automatic sorting. for example if user changes a value in first row, after this change,modified row may become last row of datagrid by automatic sorting. My question is can we stop this automatic sorting? setting sortableColumns to false will only prevent user to stop sorting by clicking on headers. – zolo Mar 9 '11 at 7:11
@zolo: As I understand your question, the automatic sorting is not applied until you click the first time onto a header. – splash Mar 9 '11 at 14:41
yes I want to stop automatic sorting fired just after itemEditEnd even after clicking on headers.But user can manually sort data by clicking on headers any time. – zolo Mar 10 '11 at 5:15
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.