DefaultDialogService class
Implements
Section titled “Implements”Public Methods
Section titled “Public Methods”▸ open(options: DialogOptions): DefaultDialog
Parameters:
Section titled “Parameters:”- options: DialogOptions
Returns DefaultDialog
openConfirm
Section titled “openConfirm”▸ openConfirm(title?: string,content?: string): Promise<boolean>
Parameters:
Section titled “Parameters:”- title:
string, Optional - content:
string, Optional
Returns Promise<boolean>
▸ openConfirm(title?: string,content?: string,callback?: (result: boolean) => void): void
Parameters:
Section titled “Parameters:”- title:
string, Optional - content:
string, Optional - callback: (result:
boolean) =>void, Optional
Returns void
openProgress
Section titled “openProgress”▸ openProgress(options: ProgressDialogOptions): DefaultProgressDialog
Parameters:
Section titled “Parameters:”- options: ProgressDialogOptions
Returns DefaultProgressDialog
openPrompt
Section titled “openPrompt”▸ openPrompt(title?: string,content?: string,defVal?: string): Promise<string>
Parameters:
Section titled “Parameters:”- title:
string, Optional - content:
string, Optional - defVal:
string, Optional
Returns Promise<string>
▸ openPrompt(title?: string,content?: string,defVal?: string,callback?: (result: string) => void): void
Parameters:
Section titled “Parameters:”- title:
string, Optional - content:
string, Optional - defVal:
string, Optional - callback: (result:
string) =>void, Optional
Returns void