ParamQuery grid support forum

General Category => Help for ParamQuery Pro => Topic started by: queensgambit9 on October 12, 2016, 08:32:29 pm

Title: Execute function onSelect
Post by: queensgambit9 on October 12, 2016, 08:32:29 pm
Trying to call function when a certain select option is chosen in toolbar.

Code: [Select]
...
type: 'select',
label: 'Select ',               
options: [{ default: '', test: 'Select1'}],
value: 'default'
...

How can I call function when Select1 is chosen?
Thanks.
Title: Re: Execute function onSelect
Post by: queensgambit9 on October 13, 2016, 01:40:27 am
I got the function to execute with

Code: [Select]
listener: function(){
if ($("#atest").val() == 'test')
{
colModel[0].hidden = false
$("#grid_array").pqGrid('option', 'colModel', $("#grid_array").pqGrid('option', 'colModel'));
}}

However the value for hidden is not applied...?
Title: Re: Execute function onSelect
Post by: paramvir on October 13, 2016, 04:50:27 pm
grid also needs to be refreshed.
Title: Re: Execute function onSelect
Post by: queensgambit9 on October 13, 2016, 06:21:25 pm
Great, thanks.

Another question when setting filter, it works fine for type textbox with:

Code: [Select]
$("#grid_array").pqGrid( "filter", {
    oper: 'replace',
    data: [
        { dataIndx: 'column1', value: 'test' }
   
    ]}

But I have issues with type select and textbox with between condition...
Title: Re: Execute function onSelect
Post by: queensgambit9 on October 13, 2016, 07:28:21 pm
Solved.