Getting Combo Values Fails
It seems that the combo control only updates the Text in the grid cell and not the Value.
Even though I store the values as part of the combo control, when I do a obj.getCellValue(5,row), I only get the text after selecting one of the items from the list.
var combo = new AW.UI.Combo;
combo.setItemText(['Completed','InProgress']);
combo.setItemValue(['41','42']);
combo.setItemCount(2);
obj.setEditorTemplate(combo,5);
Even though I store the values as part of the combo control, when I do a obj.getCellValue(5,row), I only get the text after selecting one of the items from the list.
Rick Villela
December 14,