Combobox

(part of package 'Bootstrap Components') Extends designtime/SolutionModel: JSWebComponent Extends runtime: RuntimeWebComponent

Combobox is a standard input component that allows the user to pick one of the options in it's drop-down list.

This is a reference page; many components have detailed usage guides here.

Properties

appendToBody

Type: boolean Default Value: true


dataProviderID

Type: dataprovider


enabled

Type: enabled Default Value: true


format

Type: format


placeholderText

Type: tagstring


showAs

Type: string


styleClass

Set the styleclasses that should be applied at to this component

Type: styleclass


tabSeq

Type: tabseq


toolTipText

Type: tagstring


valuelistID

Type: valuelist


visible

Whether the button is visible or not

Type: visible


Events

onActionMethodID

Parameters:

event JSEvent


onDataChangeMethodID

Handle changed data, return false if the value should not be accepted. JSEvent.data will contain extra information about dataproviderid, its scope and the scope id (record datasource or form/global variable scope)

Parameters:

oldValue ${dataproviderType} newValue ${dataproviderType} event JSEvent

Returns: boolean


onFocusGainedMethodID

Parameters:

event JSEvent


onFocusLostMethodID

Parameters:

event JSEvent


onRightClickMethodID

Parameters:

event JSEvent


API

requestFocus

Request the focus to this combobox.

@example

myElement.requestFocus();

@param mustExecuteOnFocusGainedMethod (optional) if false will not execute the onFocusGained method; the default value is true

Parameters:

mustExecuteOnFocusGainedMethod boolean (optional)


Last updated