I have 1 case with multiple select in row, and I tried create model for that Column like below:
{ title: tran('users'), dataType: "html", dataIndx: "users",
editor: {
type: "select",
attr: "multiple",
valueIndx: "user_name",
labelIndx: "user_name",
options: function() {
return usersList
},
listeners: 'change',
init: function(ui) {
ui.$editor.pqSelect({
bootstrap: { on: true } ,
checkbox: true,
radio: true,
});
}
}
},
And it's working for choosing, but after I choose and comeback, selected value gone.
Can you help me, thanks!