Hi,
I have one datagrid where one column is for checkboxes and one column
is for TextArea.
So I used itemRenderer for checkbox like
<mx:DataGridColumn
itemRenderer="com.basepin.view.components.CenteredCheckBox"
rendererIsEditor="true" editorDataField="selected"
dataField="selected"/>
and for TextArea i used itemEditor like,
<mx:DataGridColumn headerText="Room" dataField="level_room"
width="250" textAlign="center">
<mx:itemEditor >
<mx:Component>
<mx:TextArea wordWrap="true" editable="true"
maxChars="45" />
</mx:Component>
</mx:itemEditor>
</mx:DataGridColumn>
Now my problem is how to checked the checkbox on change in the
TextArea. When user enter some text in textArea the associated
checkbox should get checked automatically.
Thanks
--
You received this message because you are subscribed to the Google Groups "Flex
India Community" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to
[email protected].
For more options, visit this group at
http://groups.google.com/group/flex_india?hl=en.