kendo-combo-box
A combo box is a combination of a text box and a dropdown box, i.e. you can both select a value and enter something.
Property |
Description |
required |
Example |
focus |
If the focus is to be on this field when the page is loaded, this property must be set to "true".
Please ensure that the property "focus" is only set to true for one component, otherwise the last component rendered will receive the focus, if several have this property. |
|
"focus": true |
listWidth |
The width of the list can be specified here. |
|
"listWidth" : "150px" |
dataSourceURL |
Here you can specify the URL from which data is to be pulled. |
|
"dataSourceUrl": "PartsLookUp/GetProductGroups" |
dataTextField |
The text to be shown in the list. |
|
"dataTextField": "Bezeichnung" |
dataValueField |
The value that is read from or written to the entity (reference to the model). |
|
"dataValueField": "Grpnr" |