BootstrapClientEdit Class
# Declaration
TypeScript
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
# getCaption Method
# Declaration
# Returns
# getEnabled Method
# Declaration
# Returns
# getErrorText Method
# Declaration
# Returns
# getInputElement Method
# Declaration
# Returns
# getIsValid Method
# Declaration
# Returns
# getReadOnly Method
# Declaration
# Returns
# getValue Method
# Declaration
# Returns
# off<K> Method
# Declaration
TypeScript
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
TypeScript
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
TypeScript
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
TypeScript
setCaption(
caption: string
): void
# Parameters
# setEnabled(value) Method
# Declaration
TypeScript
setEnabled(
value: boolean
): void
# Parameters
# setErrorText(errorText) Method
# Declaration
TypeScript
setErrorText(
errorText: string
): void
# Parameters
Name
Type
errorText
string
# setIsValid(isValid) Method
# Declaration
TypeScript
setIsValid(
isValid: boolean
): void
# Parameters
Name
Type
isValid
boolean
# setReadOnly(readOnly) Method
# Declaration
TypeScript
setReadOnly(
readOnly: boolean
): void
# Parameters
Name
Type
readOnly
boolean
# setValue(value) Method
# Declaration
TypeScript
setValue(
value: any
): void
# Parameters
# validate Method
# Declaration