mirror of
https://github.com/zhigang1992/DefinitelyTyped.git
synced 2026-04-19 16:49:45 +08:00
80 lines
1.8 KiB
TypeScript
80 lines
1.8 KiB
TypeScript
// Type definitions for X-Editable v1.5.1
|
|
// Project: http://vitalets.github.io/x-editable/index.html
|
|
// Definitions by: Chris Kirby <https://github.com/sirkirby/>
|
|
// Definitions: https://github.com/sirkirby/DefinitelyTyped
|
|
|
|
|
|
/// <reference path="../jquery/jquery.d.ts"/>
|
|
|
|
interface XEditableOptions
|
|
{
|
|
ajaxOptions?: any;
|
|
anim?: string;
|
|
autotext?: string;
|
|
defaultValue?: any;
|
|
disabled?: boolean;
|
|
display?: any;
|
|
emptyclass?: string;
|
|
emptytext?: string;
|
|
error?: any;
|
|
highlight?: any;
|
|
mode?: string;
|
|
name?: string;
|
|
onblur?: string;
|
|
params?: any;
|
|
pk?: any;
|
|
placement?: string;
|
|
savenochange?: boolean;
|
|
selector?: string;
|
|
send?: string;
|
|
showbuttons?: any;
|
|
success?: any;
|
|
toggle?: string;
|
|
type?: string;
|
|
unsavedclass?: string;
|
|
url?: any;
|
|
validate?: any;
|
|
value?: any;
|
|
|
|
|
|
}
|
|
|
|
interface XEditableSubmitOptions {
|
|
url?: any;
|
|
data?: any;
|
|
ajaxOptions?: any;
|
|
error(obj: any) : void;
|
|
success(obj: any, config: any) : void;
|
|
}
|
|
|
|
interface XEditable {
|
|
options: XEditableOptions;
|
|
activate() : void;
|
|
destroy() : void;
|
|
disable() : void;
|
|
enable() : void;
|
|
getValue(isSingle: boolean) : any;
|
|
hide() : void;
|
|
option(key: any, value: any) : void;
|
|
setValue(value: any, convertStr: boolean) : void;
|
|
show(closeAll: boolean) : void;
|
|
submit(options: XEditableSubmitOptions) : void;
|
|
toggle(closeAll: boolean) : void;
|
|
toggleDisabled() : void;
|
|
validate() : void;
|
|
}
|
|
|
|
interface JQuery {
|
|
/**
|
|
* Initializes editable with the specified options
|
|
* @param options an object with options specific to the editable instance
|
|
*/
|
|
editable(options?: any): XEditable;
|
|
/**
|
|
* Initializes editable calling the specific method with is parameters
|
|
* @param method the method to call
|
|
* @param params the parameters expected by the method
|
|
*/
|
|
editable(method: string, params?: any): XEditable;
|
|
}
|