Posted 29 September 2017, 8:09 pm EST
I have an array of objects, and one of the properties on that array is an object. Is it possible to use DataMap to select a value for that object with a dropdown?
I tried this:
var col3 = ctrl.flex.columns.getColumn('group'); angular.forEach(ctrl.parent.comboData.CostLineGroups, function (item) { item.Thing = item; }); col3.dataMap = new wijmo.grid.DataMap(ctrl.parent.comboData.CostLineGroups, 'Thing', 'Description');
and it seems to populate the dropdown correctly but the dropdown does not allow selection of the item
