| Package | org.openzet.controls.dataGridClasses |
| Class | public class DataGridHeaderCheckBox |
| Inheritance | DataGridHeaderCheckBox DataGridCheckBoxRenderer mx.controls.CheckBox |
See also
| Property | Defined by | ||
|---|---|---|---|
| compareFunction : Function
A property to specify an external function by which to judge whether to forcefully set specific CheckBox
item's selected status or not.
| DataGridHeaderCheckBox | ||
![]() | enableFunction : Function
A flag to specify an external function to enable or disable CheckBox instance.
| DataGridCheckBoxRenderer | |
![]() | iconWidth : Number = 14 [static]
Static variable that indicates iconWidth.
| DataGridCheckBoxRenderer | |
![]() | labelField : String
A property to specify a dataField which has label data values for each instance.
| DataGridCheckBoxRenderer | |
| Method | Defined by | ||
|---|---|---|---|
| DataGridHeaderCheckBox | |||
| compareFunction | property |
compareFunction:Function [read-write]A property to specify an external function by which to judge whether to forcefully set specific CheckBox item's selected status or not. A comareFunction should be implemented like
public function compareFunc(item:Object):Boolean {
if (item.A == 10) {
return true;
}
return false;
}
public function get compareFunction():Function
public function set compareFunction(value:Function):void
| DataGridHeaderCheckBox | () | constructor |
public function DataGridHeaderCheckBox()