Flex DataGrid sorts
Sometimes your data is in a specific order, but not ordered on anything you can really sort by via a data grid. So sometimes you apply a sort with the data grid (or advanced data grid), which is great and everything, but what do you do when you want to reset the data back to the original order?
this.mydatagrid.dataProvider.sort = null;
this.mydatagrid.dataProvider.refresh();
Done!
this.mydatagrid.dataProvider.sort = null;
this.mydatagrid.dataProvider.refresh();
Done!
Comments