Hello,
i tryed to autoopen a select so the optionlist is directly shown in the editmode.
pqType: function (ui) {
return "select";
},
pqOptions: function (ui) {
return [
'R',
'F',
''
];
},
pqInit: function (ui) {
var $inp = ui.$editor.find('select');
$inp.prevObject.on('focus',function (e) {
this.pqSelect('open');
});
},
Thx for your help.