R – How to disable selected columns in a datagrid in flex for selected rows

apache-flexdatagrid

Is there any way to disable a few columns for a particular row in flex datagrid?

I have a datagrid with about 10 or more columns, say for example a few column names are: Item Id, Item Name, Item Status and VerifiedState. Initially I want the column Verified State to be disabled.

Now When the value of the column, Item Status is Review Passed for a particular row, I want the column VerifiedState to be enabled and editable. Is that possible in Flex datagrid.

If so, how can I achieve it.

Best Answer

You can do an ItemRenderer for the VerifiedState column, that won't show anything unless Item Status is Review Passed.

Related Topic