[Config Option] (String[])
[Config Option] (String/String[])
[Config Option] (Object)
[Property] (Object)
[Config Option] (String)
[Property] (Boolean)
[Config Option] (String)
[Config Option] (Object)
[Config Option] (Object)
[Config Option] (Object)
[Property] (Ext.Class)
[Config Option] (Boolean)
[Config Option] (String)
[Property] (Boolean)
[Config Option] (Array)
[Config Option] (Object)
[Config Option] (String[])
[Method] This method adds a sorter
Ext.util.Sorter/String/Function/Object Can be an instance of Ext.util.Sorter, a string indicating a property name, an object representing an Ext.util.Sorter configuration, or a sort function.
String The default direction for each sorter in the array. Defaults to the value of defaultSortDirection. Can be either 'ASC' or 'DESC'.
[Method] This method adds all the sorters in a passed array
Array An array with sorters. A sorter can be an instance of Ext.util.Sorter, a string indicating a property name, an object representing an Ext.util.Sorter configuration, or a sort function.
String The default direction for each sorter in the array. Defaults to the value of defaultSortDirection. Can be either 'ASC' or 'DESC'.
[Method] Call the original method that was previously overridden with override This method is deprecated as callParent does
Array/Arguments The arguments, either an array or the arguments object from the current method, for example: this.callOverridden(arguments)
any
Object Returns the result of calling the overridden method
[Method] Call the parent method of the current method
Array/Arguments The arguments, either an array or the arguments object from the current method, for example: this.callParent(arguments)
any
Object Returns the result of calling the parent method
[Method] This method is used by an override to call the superclass method but bypass any overridden method
Array/Arguments The arguments, either an array or the arguments object from the current method, for example: this.callSuper(arguments)
any
Object Returns the result of calling the superclass method
[Method]
[Method] This method returns the index that a given item would be inserted into a given array based on the current sorters
Array The array that you want to insert the item into.
Mixed The item that you want to insert into the items array.
number
Number The index for the given item in the given array based on the current sorters.
[Method] Returns the value of defaultSortDirection
string
String
[Method] Returns the initial configuration passed to constructor
String When supplied, value for particular configuration option is returned, otherwise the full config object is returned.
any
Object/Mixed
[Method] Returns an up to date sort function
any
Function The sort function.
[Method] Returns the value of sortRoot
string
String
[Method] Returns the value of sorters
Array<any>
Array
[Method] Initialize configuration for this class
Object
any
Object mixins The mixin prototypes as key - value pairs
[Method] This method adds a sorter at a given index
Number The index at which to insert the sorter.
Ext.util.Sorter/String/Function/Object Can be an instance of Ext.util.Sorter, a string indicating a property name, an object representing an Ext.util.Sorter configuration, or a sort function.
String The default direction for each sorter in the array. Defaults to the value of defaultSortDirection. Can be either 'ASC' or 'DESC'.
[Method] This method inserts all the sorters in the passed array at the given index
Number The index at which to insert the sorters.
Array Can be an instance of Ext.util.Sorter, a string indicating a property name, an object representing an Ext.util.Sorter configuration, or a sort function.
String The default direction for each sorter in the array. Defaults to the value of defaultSortDirection. Can be either 'ASC' or 'DESC'.
[Method] This method removes a sorter
Ext.util.Sorter/String/Function/Object Can be an instance of Ext.util.Sorter, a string indicating a property name, an object representing an Ext.util.Sorter configuration, or a sort function.
[Method] This method removes all the sorters in a passed array
Array Each value in the array can be a string (property name), function (sorterFn) or Sorter instance.
[Method] Sets the value of defaultSortDirection
String The new value.
[Method] Sets the value of sortRoot
String The new value.
[Method] Sets the value of sorters
Array The new value.
[Method] This method will sort an array based on the currently configured sorters
Array The array you want to have sorted.
Array<any>
Array The array you passed after it is sorted.