How to add radiobuttons to a datagrid for a particular column using
action script and without using itemRendrerer.
My code is :
var columns:Array = [];
var myDataGridColumn:DataGridColumn = new
DataGridColumn();
myDataGridColumn.headerText = "Name";
myDataGridColumn.dataField="@FirstName";
myDataGridColumn.width=135;
columns.push( myDataGridColumn );
myDataGridColumn = new DataGridColumn();
myDataGridColumn.headerText = "Email";
myDataGridColumn.dataField= "@email";
myDataGridColumn.width=200;
columns.push( myDataGridColumn );
myDataGridColumn = new DataGridColumn();
myDataGridColumn.headerText = "Options";
myDataGridColumn.dataField=
columns.push( myDataGridColumn );
dataGridNew.columns=columns;
and the problem is how to add radio button to "Options" column without
using itemRenderer.
--
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.