Packagecom.iwobanas.controls.dataGridClasses.filterEditors
Classpublic class DropDownFilterEditor
InheritanceDropDownFilterEditor Inheritance FilterEditorBase Inheritance mx.containers.Box

The DropDownFilterEditor defines the Decorator class displaying other filter editors as drop-down.

Usually you do not extend this class, but create new filter and pass it as constructor argument to DropDownFilterEditor

See also

com.iwobanas.controls.dataGridClasses.filterEditors.IColumnFilterEditor


Public Properties
 PropertyDefined by
 Inheritedcolumn : MDataGridColumn
Column related with this filter editor.
FilterEditorBase
  editor : IColumnFilterEditor
[read-only] Editor instance displayed inside drop-down.
DropDownFilterEditor
Public Methods
 MethodDefined by
  
Constructor.
DropDownFilterEditor
  
endEdit():void
End editing filter for the given column.
DropDownFilterEditor
  
Start editing filter for the given column.
DropDownFilterEditor
Protected Methods
 MethodDefined by
  
Initialize effects applied to the dropdown when it opens/closes.
DropDownFilterEditor
Styles
 StyleDescriptionDefined by
  
closeDuration
Type: Number   Format: Time   CSS Inheritance: no
The length of the transition when the drop-down closes, in milliseconds. The default value is 250.
DropDownFilterEditor
  
openDuration
Type: Number   Format: Time   CSS Inheritance: no
The length of the transition when the drop-down opens, in milliseconds. The default value is 250.
DropDownFilterEditor
Property detail
editorproperty
editor:IColumnFilterEditor  [read-only]

Editor instance displayed inside drop-down.

Implementation
    public function get editor():IColumnFilterEditor
Constructor detail
DropDownFilterEditor()constructor
public function DropDownFilterEditor(editor:IColumnFilterEditor)

Constructor.

Parameters
editor:IColumnFilterEditor — instance of column filter editor which should be displayed as drop-down.
Method detail
endEdit()method
public override function endEdit():void

End editing filter for the given column. Close drop-down and pcall endEdit() on editor

initializeEffects()method 
protected function initializeEffects():void

Initialize effects applied to the dropdown when it opens/closes.

startEdit()method 
public override function startEdit(column:MDataGridColumn):void

Start editing filter for the given column. Call startEdit() on editor and open drop-down.

Parameters
column:MDataGridColumn