@syncfusion/ej2-inplace-editor
Version:
A package of Essential JS 2 Inplace editor components, which is used to edit and update the value dynamically in server.
35 lines (34 loc) • 935 B
TypeScript
import { AutoComplete as EJ2AutoComplete } from '@syncfusion/ej2-dropdowns';
import { InPlaceEditor } from '../base/inplace-editor';
import { NotifyParams, IComponent } from '../base/interface';
/**
* The `AutoComplete` module is used configure the properties of Auto complete type editor.
*/
export declare class AutoComplete implements IComponent {
private base;
protected parent: InPlaceEditor;
compObj: EJ2AutoComplete;
constructor(parent?: InPlaceEditor);
render(e: NotifyParams): void;
/**
* @hidden
* @returns {void}
*/
showPopup(): void;
focus(): void;
updateValue(e: NotifyParams): void;
/**
* Destroys the module.
*
* @function destroy
* @returns {void}
* @hidden
*/
destroy(): void;
/**
* For internal use only - Get the module name.
*
* @returns {string} - returns the string
*/
private getModuleName;
}