Filter DateFilter
Package: | Ext.ux.grid.filter |
Defined In: | DateFilter.js |
Class: | DateFilter |
Extends: | Filter |
Example Usage:
var filters = new Ext.ux.grid.GridFilters({
...
filters: [{
// required configs
type: 'date',
dataIndex: 'dateAdded',
// optional configs
dateFormat: 'm/d/Y', // default
beforeText: 'Before', // default
afterText: 'After', // default
onText: 'On', // default
pickerOpts: {
// any DateMenu configs
},
active: true // default is false
}]
});
Config Options | Defined By | |
---|---|---|
active : Boolean Indicates the initial status of the filter (defaults to false). | Filter | |
afterText : String Defaults to 'After'. | DateFilter | |
afterText : String Defaults to 'After'. | DateFilter | |
beforeText : String Defaults to 'Before'. | DateFilter | |
beforeText : String Defaults to 'Before'. | DateFilter | |
compareMap : Object Map for assigning the comparison values used in serialization. | DateFilter | |
compareMap : Object Map for assigning the comparison values used in serialization. | DateFilter | |
dataIndex : String The Ext.data.Store dataIndex of the field this filter represents.
The dataIndex does not actually have to exist in th... The Ext.data.Store dataIndex of the field this filter represents.
The dataIndex does not actually have to exist in the store. | Filter | |
dateFormat : String The date format to return when using getValue.
Defaults to 'm/d/Y'. | DateFilter | |
dateFormat : String The date format to return when using getValue.
Defaults to 'm/d/Y'. | DateFilter | |
maxDate : Date Allowable date as passed to the Ext.DatePicker
Defaults to undefined. | DateFilter | |
maxDate : Date Allowable date as passed to the Ext.DatePicker
Defaults to undefined. | DateFilter | |
menuItemCfgs : Object Default configuration options for each menu item | DateFilter | |
menuItemCfgs : Object Default configuration options for each menu item | DateFilter | |
menuItems : Array The items to be shown in this menu
Defaults to: menuItems : ['before', 'after', '-', 'on'], | DateFilter | |
menuItems : Array The items to be shown in this menu
Defaults to: menuItems : ['before', 'after', '-', 'on'], | DateFilter | |
minDate : Date Allowable date as passed to the Ext.DatePicker
Defaults to undefined. | DateFilter | |
minDate : Date Allowable date as passed to the Ext.DatePicker
Defaults to undefined. | DateFilter | |
onText : String Defaults to 'On'. | DateFilter | |
onText : String Defaults to 'On'. | DateFilter | |
pickerOpts : Object Configuration options for the date picker associated with each field. | DateFilter | |
pickerOpts : Object Configuration options for the date picker associated with each field. | DateFilter | |
updateBuffer : Number Number of milliseconds to wait after user interaction to fire an update. Only supported
by filters: 'list', 'numeric... Number of milliseconds to wait after user interaction to fire an update. Only supported
by filters: 'list', 'numeric', and 'string'. Defaults to 500. | Filter |
Property | Defined By | |
---|---|---|
active : Boolean True if this filter is active. Use setActive() to alter after configuration. | Filter | |
getSerialArgs : Object Template method to be implemented by all subclasses that is to
get and return serialized filter data for transmission... Template method to be implemented by all subclasses that is to
get and return serialized filter data for transmission to the server.
Defaults to Ext.emptyFn. | Filter | |
init : Object Template method to be implemented by all subclasses that is to
initialize the filter and install required menu items.... Template method to be implemented by all subclasses that is to
initialize the filter and install required menu items.
Defaults to Ext.emptyFn. | Filter | |
menu : Ext.menu.Menu The filter configuration menu that will be installed into the filter submenu of a column menu. | Filter |
Method | Defined By | |
---|---|---|
destroy()
:
void Destroys this filter by purging any event listeners, and removing any menus. Destroys this filter by purging any event listeners, and removing any menus. Parameters:
| Filter | |
getFieldValue( String item )
:
DateGet and return the date menu picker value Get and return the date menu picker value Parameters:
| DateFilter | |
getPicker( String item )
:
ObjectGets the menu picker associated with the passed field Gets the menu picker associated with the passed field Parameters:
| DateFilter | |
getValue()
:
Object Template method to be implemented by all subclasses that is to
get and return the value of the filter.
Defaults to Ex... Template method to be implemented by all subclasses that is to
get and return the value of the filter.
Defaults to Ext.emptyFn. Parameters:
| Filter | |
isActivatable()
:
Boolean Template method to be implemented by all subclasses that is to
return true if the filter has enough configuration inf... Template method to be implemented by all subclasses that is to
return true if the filter has enough configuration information to be activated.
Defaults to return true. Parameters:
| Filter | |
onMenuSelect( Object date , Object menuItem , Object value , Object picker )
:
voidHandler for when the menu for a field fires the 'select' event Handler for when the menu for a field fires the 'select' event Parameters:
| DateFilter | |
serialize()
:
Object/Array Returns the serialized filter data for transmission to the server
and fires the 'serialize' event. Returns the serialized filter data for transmission to the server
and fires the 'serialize' event. Parameters:
| Filter | |
setActive( Boolean active , Boolean suppressEvent )
:
voidSets the status of the filter and fires the appropriate events. Sets the status of the filter and fires the appropriate events. Parameters:
| Filter | |
setValue( Object data )
:
voidTemplate method to be implemented by all subclasses that is to
set the value of the filter and fire the 'update' even... Template method to be implemented by all subclasses that is to
set the value of the filter and fire the 'update' event.
Defaults to Ext.emptyFn. Parameters:
| Filter | |
validateRecord( Ext.data.Record record )
:
BooleanTemplate method that is to validate the provided Ext.data.Record
against the filters configuration. Template method that is to validate the provided Ext.data.Record
against the filters configuration. Parameters:
| DateFilter |
Event | Defined By | |
---|---|---|
activate :
( Ext.ux.grid.filter.Filter this )
Fires when an inactive filter becomes active Fires when an inactive filter becomes active Listeners will be called with the following arguments:
| Filter | |
deactivate :
( Ext.ux.grid.filter.Filter this )
Fires when an active filter becomes inactive Fires when an active filter becomes inactive Listeners will be called with the following arguments:
| Filter | |
serialize :
( Array/Object data , Ext.ux.grid.filter.Filter filter )
Fires after the serialization process. Use this to attach additional parameters to serialization
data before it is en... Fires after the serialization process. Use this to attach additional parameters to serialization
data before it is encoded and sent to the server. Listeners will be called with the following arguments:
| Filter | |
update :
( Ext.ux.grid.filter.Filter this )
Fires when a filter configuration has changed Fires when a filter configuration has changed Listeners will be called with the following arguments:
| Filter |