Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - conditio

Pages: [1]
1
ParamQuery Pro Evaluation Support / Re: Autoopen Select
« on: December 05, 2017, 07:26:03 pm »
http://jsfiddle.net/mmg0cn30/

I want that the column state shows all options when I click at it. not only the select element. the select element should expand automaticly.

2
ParamQuery Pro Evaluation Support / Autoopen Select
« on: December 05, 2017, 03:42:23 pm »
Hello,

i tryed to autoopen a select so the optionlist is directly shown in the editmode.
Code: [Select]
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.

Pages: [1]