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"
}
}],
Can I use something like var arr = [ "1", "2", "3", "4", "5", "6", "7", "8", "9", "10"]; as the datasource? without the textKey and valueKey?
var arr = [ "1", "2", "3", "4", "5", "6", "7", "8", "9", "10"];
I got it to work-- thanks