I bind dropdown in column for edit purpose which has its value part and lable part.
Now when i fetch data in datamodel it return id for that coumn means value part. I want to display appropriate label for that id.
And when I edit i want to send its id part in backend.
Find below code.
colM.push({ title: '<b>PSL</b>', dataIndx: 'pslId', align: "center", width: 100, editable: true, editor: { type: "select", mapIndices: { text: "name", pslId: "pslId" }, labelIndx: "name", valueIndx: "pslId", options: optPSL } });
Please help.