I have a DataGrid where one of the columns has a labelFunction. When I run the application a scrollbar shows up in the DataGrid indicating to me that it has data but there is nothing in the DataGrid. When I scroll items start showing up. When I Debugged it I noticed that the labelFunction was never being called until I started scrolling. Does anyone know why this is happening?

link|improve this question

67% accept rate
did you use validateNow() after you assign the dataprovider? – Treby Jul 1 '10 at 1:16
Can you provide a code sample? How are you setting the labelFunction? In MXML? – www.Flextras.com Jul 1 '10 at 1:53
which of the two functions did the trick? – Amarghosh Jul 2 '10 at 4:47
feedback

1 Answer

up vote 2 down vote accepted

If you are assigning labelFunction at a later time using ActionScript after setting the dataProvider, try calling datagrid.invalidateList() or datagrid.updateList() after assigning it - these functions force a refresh of all the rows.

link|improve this answer
updateList was the one. – asawilliams Jul 5 '10 at 15:55
feedback

Your Answer

 
or
required, but never shown

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