J'aimerais intégrer des checkbox dans une mx.controls.List.
Actuellement ma liste est simple, elle contient des données provenant d'un Array.
J'aimerais avoir les checkbox à la place, où les label des checkbox seront les String du Array
Voici ma liste actuelle
CODE
listState = new List();
listState.x = 224;
listState.y = 36;
listState.columnWidth = 190;
listState.rowHeight = 20;
listState.width = 190;
listState.height = 20;
listState.allowMultipleSelection = true;
listState.setStyle("backgroundColor", 0xEEEEEE);
listState.addEventListener(ListEvent.ITEM_CLICK, addContentState);
listState.dataProvider = data;
listState.x = 224;
listState.y = 36;
listState.columnWidth = 190;
listState.rowHeight = 20;
listState.width = 190;
listState.height = 20;
listState.allowMultipleSelection = true;
listState.setStyle("backgroundColor", 0xEEEEEE);
listState.addEventListener(ListEvent.ITEM_CLICK, addContentState);
listState.dataProvider = data;
je vous remercie d'avance
