Do the event listeners not work for Editor Select elements? The below 'change' function does not execute when I change the selection.
colModel: [
{
title: 'Data Type', width: 100, dataIndx: 'DataType',
editor: {
type: 'select',
options: ['Express Lane', 'Package Us', 'Safe Face'], listeners: [{
change: function (evt, ui) {
alert('it worked!');
}
}],
}
},