Hi, I have the following mxml code:
<dg:DataGrid localId="grid" dataProvider="{data}" width="100%" height="200"> <dg:beads> <beads:DataGridOptions modelType="{TestGridModel}"/> </dg:beads> ... The DataGridOptions bead it's a bead to dynamically add buttons on the Jewel DataGrid footer. This bead have a property called modelType:Class and the data binding is not working (the property is always null) I have the ContainerDataBinding set on the main mxml file. I also tried to decorate the modelType property with [Bindable] Do I missing a special DataBinding bead for this ?