Refresh GroupCollection of an AdvancedDatagrid - the sorted Arraycollection gets Randomized?

Solved: private function populateGrid():void { gc. Source = siteTrafficData; gc.refresh(); adv_dg.validateNow(); var sort:Sort = new Sort(); sort. Fields = new SortField("date"); IerarchicalCollectionView(adv_dg.

DataProvider). Sort = sort; IerarchicalCollectionView(adv_dg. DataProvider).refresh(); }.

Sort the DataGrid instead of the dataProvider - change the view, not the model. Set the sortableColumns property of the grid and sortable property of the column to true. Use the sortCompareFunction property of the column if necessary.

SotableColumns for the Adv. DataGrid sets the click option of sorting that column to enabled, does not sort it. Sortable property to the column to true, just gives me the enabling capacity to be sortable.

SortableColumns = false, overrides and disables the column even if sortable is true. My dates are not sortable. Note though, even if I sort the column (click on header) it works beautifully.

Just not be default. – Yozef Dec 6 '09 at 0:36.

I cant really gove you an answer,but what I can give you is a way to a solution, that is you have to find the anglde that you relate to or peaks your interest. A good paper is one that people get drawn into because it reaches them ln some way.As for me WW11 to me, I think of the holocaust and the effect it had on the survivors, their families and those who stood by and did nothing until it was too late.

Related Questions