I want to create a table like structure in Flex, with labels as header. The rows entries might be a check box or a text input box,Like give below.
select | task name | task id | task type
(check box) | (text box) | (text box) | (text box)
(check box) | (text box) | (text box) | (text box)
Or can I create a data grid and have text input boxes or check boxes as column values?
Yes you can. Set the
DataGridColumn‘seditableandrendererIsEditorproperties totrueto getTextInputs in the cells. Use custom item renderer to get check boxes.