Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
435
Combo box in Grid
posted

what's the simplest way to display a combobox in a grid? All I need is a box to display an array of numbers (1- 100) so that the end user can select one.  It will NOT be saved but rather used in a value for another function.  Do I need to use

columnSettings: [{
columnKey: "MIN_AGE",
editorType: 'combo',
required: true,
editorOptions: {
mode: "dropdown",
dataSource: ageJSON,
textKey: "Name",
valueKey: "ID"

}

}],

Parents Reply Children
No Data