How we can hide a row at specific index of DataGrid in AS3 ?
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
If dataProvider of your
DataGridisArrayCollectionyou can specifyfilterFunctionproperty for it, something like thatThe item will still be in ArrayCollection but will be made invisible by the filter. Not the most efficient solution but it works. You need to call
to apply the filter.
UPDATE: To access raw, unfiltered data of
ArrayCollectionyou should uselistproperty, so if you hid item at index 0 and still want to be able to access it you do that like this: