1. Please check pqSelect editor with grouped options in Shipping Region column
https://plnkr.co/edit/jixUib0yi5n5eQp1C6Ym?p=preview {
title: "Shipping Region",
dataIndx: "ShipRegion",
editor: {
type: 'select',
valueIndx: "ShipRegion",
labelIndx: "ShipRegion",
groupIndx: "ShipCountry",
prepend: {
'': ''
},
//listeners: 'change',
options: function() {
var grid = this;
return grid.getData({
dataIndx: ["ShipCountry", "ShipRegion"]
});
},
init: function(ui) {
ui.$editor.pqSelect({
checkbox: true,
radio: true,
width: '100%'
});
}
}
},
2. Please elaborate your question with an example.