Mega Code Archive
Inline DataGrid CheckBox Editor With Offsets
import mx.collections.ArrayCollection;
[Bindable]
private var initDG:ArrayCollection = new ArrayCollection([
{Company: 'Acme', Contact: 'Bob Jones',Phone: '413-555-1212', Date: '5/5/05' , FollowUp: true },
{Company: 'Allied', Contact: 'Jane Smith',Phone: '617-555-3434', Date: '5/6/05' , FollowUp: false}
]);
// Define a property for returning
// the new value to the cell.
[Bindable]
public var cbSelected:Boolean;