BootstrapClientEdit Class
Declaration
class BootstrapClientEdit extends Control
IMPORTANT
Bootstrap Controls for ASP.NET Core are in maintenance mode. We don’t add new controls or develop new functionality for this product line. Our recommendation is to use the ASP.NET Core Controls suite.
Methods
focus Method
Declaration
focus(): void
getCaption Method
Declaration
getCaption(): string
Returns
getEnabled Method
Declaration
getEnabled(): boolean
Returns
getErrorText Method
Declaration
getErrorText(): string
Returns
getInputElement(): any
getIsValid Method
Declaration
getIsValid(): boolean
Returns
getReadOnly Method
Declaration
getReadOnly(): boolean
Returns
getValue Method
Declaration
getValue(): any
Returns
off<K> Method
Declaration
off<K extends keyof BootstrapClientEditEventMap>(
eventName?: K,
callback?: (this: BootstrapClientEdit,
args?: BootstrapClientEditEventMap[K]) => void
): this
Parameters
Name |
Type |
eventName |
K |
callback |
(this: BootstrapClientEdit, args?: BootstrapClientEditEventMap[K]) => void |
Type Parameters
Returns
on<K>(eventName, callback) Method
Declaration
on<K extends keyof BootstrapClientEditEventMap>(
eventName: K,
callback: (this: BootstrapClientEdit,
args?: BootstrapClientEditEventMap[K]) => void
): this
Parameters
Name |
Type |
eventName |
K |
callback |
(this: BootstrapClientEdit, args?: BootstrapClientEditEventMap[K]) => void |
Type Parameters
Returns
once<K>(eventName, callback) Method
Declaration
once<K extends keyof BootstrapClientEditEventMap>(
eventName: K,
callback: (this: BootstrapClientEdit,
args?: BootstrapClientEditEventMap[K]) => void
): this
Parameters
Name |
Type |
eventName |
K |
callback |
(this: BootstrapClientEdit, args?: BootstrapClientEditEventMap[K]) => void |
Type Parameters
Returns
setCaption(caption) Method
Declaration
setCaption(
caption: string
): void
Parameters
setEnabled(value) Method
Declaration
setEnabled(
value: boolean
): void
Parameters
setErrorText(errorText) Method
Declaration
setErrorText(
errorText: string
): void
Parameters
Name |
Type |
errorText |
string |
setIsValid(isValid) Method
Declaration
setIsValid(
isValid: boolean
): void
Parameters
Name |
Type |
isValid |
boolean |
setReadOnly(readOnly) Method
Declaration
setReadOnly(
readOnly: boolean
): void
Parameters
Name |
Type |
readOnly |
boolean |
setValue(value) Method
Declaration
setValue(
value: any
): void
Parameters
validate Method
Declaration
validate(): void