Posted 18 August 2020, 10:56 am EST
I have a DataMap on a FlexGrid column. I need to be able to clear the option, so I put an empty value option into the DataMap. Once an item is selected, if the user selects the first/empty option (in my example below displays a ‘.’), the grid will not accept the empty cell value, it keeps the previous value.
let statusMap = new wijmo.grid.DataMap([{val: ‘’, display: ‘.’}, {val: ‘C’, display: ‘Complete’}, {val: ‘P’, display: ‘Pending’}], ‘val’, ‘display’);