Interface IField

Hierarchy

Index

Properties

Methods

Properties

optional public alias?: Array<string>

[Config Option] (String[])

optional public allowNull?: boolean

[Config Option] (Boolean)

optional public alternateClassName?: any

[Config Option] (String/String[])

optional public config?: any

[Config Option] (Object)

optional public convert?: any

[Config Option] (Function)

optional public dateFormat?: string

[Config Option] (String)

optional public defaultValue?: any

[Config Option] (Object)

optional public extend?: string

[Config Option] (String)

optional public inheritableStatics?: any

[Config Option] (Object)

optional public mapping?: any

[Config Option] (String/Number)

optional public mixins?: any

[Config Option] (Object)

optional public name?: string

[Config Option] (String)

optional public persist?: boolean

[Config Option] (Boolean)

optional public platformConfig?: any

[Config Option] (Object)

optional public self?: IClass

[Property] (Ext.Class)

optional public singleton?: boolean

[Config Option] (Boolean)

optional public sortDir?: string

[Config Option] (String)

optional public sortType?: any

[Config Option] (Function)

optional public statics?: any

[Config Option] (Object)

optional public type?: any

[Config Option] (String/Object)

optional public useNull?: boolean

[Config Option] (Boolean)

optional public uses?: Array<string>

[Config Option] (String[])

Methods

optional public callOverridden(args?: any): any

[Method] Call the original method that was previously overridden with override This method is deprecated as callParent does

Parameters

  • args?: any optional

    Array/Arguments The arguments, either an array or the arguments object from the current method, for example: this.callOverridden(arguments)

Returns

any

Object Returns the result of calling the overridden method

optional public callParent(args?: any): any

[Method] Call the parent method of the current method

Parameters

  • args?: any optional

    Array/Arguments The arguments, either an array or the arguments object from the current method, for example: this.callParent(arguments)

Returns

any

Object Returns the result of calling the parent method

optional public callSuper(args?: any): any

[Method] This method is used by an override to call the superclass method but bypass any overridden method

Parameters

  • args?: any optional

    Array/Arguments The arguments, either an array or the arguments object from the current method, for example: this.callSuper(arguments)

Returns

any

Object Returns the result of calling the superclass method

optional public destroy()

[Method]

optional public getAllowNull(): boolean

[Method] Returns the value of allowNull

Returns

boolean

Boolean

optional public getBubbleEvents(): string

[Method] Returns the value of bubbleEvents

Returns

string

String

optional public getConvert(): any

[Method] Returns the value of convert

Returns

any

Function

optional public getDateFormat(): string

[Method] Returns the value of dateFormat

Returns

string

String

optional public getDecode(): any

[Method] Returns the value of decode

Returns

any

Object

optional public getDefaultValue(): any

[Method] Returns the value of defaultValue

Returns

any

Object

optional public getEncode(): any

[Method] Returns the value of encode

Returns

any

Object

optional public getInitialConfig(name?: string): any

[Method] Returns the initial configuration passed to constructor

Parameters

  • name?: string optional

    String When supplied, value for particular configuration option is returned, otherwise the full config object is returned.

Returns

any

Object/Mixed

optional public getMapping(): any

[Method] Returns the value of mapping

Returns

any

String/Number

optional public getName(): string

[Method] Returns the value of name

Returns

string

String

optional public getPersist(): boolean

[Method] Returns the value of persist

Returns

boolean

Boolean

optional public getSortDir(): string

[Method] Returns the value of sortDir

Returns

string

String

optional public getSortType(): any

[Method] Returns the value of sortType

Returns

any

Function

optional public getType(): any

[Method] Returns the value of type

Returns

any

String/Object

optional public initConfig(instanceConfig?: any): any

[Method] Initialize configuration for this class

Parameters

  • instanceConfig?: any optional

    Object

Returns

any

Object mixins The mixin prototypes as key - value pairs

optional public setAllowNull(allowNull?: boolean)

[Method] Sets the value of allowNull

Parameters

  • allowNull?: boolean optional

    Boolean

optional public setBubbleEvents(bubbleEvents?: string)

[Method] Sets the value of bubbleEvents

Parameters

  • bubbleEvents?: string optional

    String

optional public setConvert(convert?: any)

[Method] Sets the value of convert

Parameters

  • convert?: any optional

    Function

optional public setDateFormat(dateFormat?: string)

[Method] Sets the value of dateFormat

Parameters

  • dateFormat?: string optional

    String

optional public setDecode(decode?: any)

[Method] Sets the value of decode

Parameters

  • decode?: any optional

    Object

optional public setDefaultValue(defaultValue?: any)

[Method] Sets the value of defaultValue

Parameters

  • defaultValue?: any optional

    Object

optional public setEncode(encode?: any)

[Method] Sets the value of encode

Parameters

  • encode?: any optional

    Object

optional public setMapping(mapping?: any)

[Method] Sets the value of mapping

Parameters

  • mapping?: any optional

    String/Number

optional public setName(name?: string)

[Method] Sets the value of name

Parameters

  • name?: string optional

    String

optional public setPersist(persist?: boolean)

[Method] Sets the value of persist

Parameters

  • persist?: boolean optional

    Boolean

optional public setSortDir(sortDir?: string)

[Method] Sets the value of sortDir

Parameters

  • sortDir?: string optional

    String

optional public setSortType(sortType?: any)

[Method] Sets the value of sortType

Parameters

  • sortType?: any optional

    Function

optional public setType(type?: any)

[Method] Sets the value of type

Parameters

  • type?: any optional

    String/Object