When I change the selection of a select list and tab away or change cells, the selected value is lost and cell displays the original value. Any ideas why this is happening and how to correct? Here is the column and a few drop down values for the editor
var colM = [
{
title: 'Facility', width: 100, dataType: 'string',
editor: {
type: 'select',
options: FacilityName
},
render: function (ui) {
return ui.rowData['Facility']['Name'];
}
},
var FacilityName = ['random', 'acts'];