Package | com.iwobanas.controls.dataGridClasses.filterEditors |
Interface | public interface IColumnFilterEditor extends mx.core.IUIComponent |
Implementors | FilterEditorBase |
See also
Method | Defined by | ||
---|---|---|---|
endEdit():void
End editing filter for the given column.
| IColumnFilterEditor | ||
startEdit(column:MDataGridColumn):void
Start editing filter for the given column.
| IColumnFilterEditor |
endEdit | () | method |
public function endEdit():void
End editing filter for the given column.
Implementation of this column should also set MDataGridColumn
editorInstance
property to null.
Ending editing the filter does not mean that the filter should be deactivated. Only the editor component should be closed.
startEdit | () | method |
public function startEdit(column:MDataGridColumn):void
Start editing filter for the given column.
Implementation of this function should update MDataGridColumn
editorInstance
property.
Typically concrete editors also check the type of columns
filter
property and create new filter if needed.
column:MDataGridColumn |