ParamQuery grid support forum
General Category => Help for ParamQuery Pro => Topic started by: queensgambit9 on October 12, 2016, 08:32:29 pm
-
Trying to call function when a certain select option is chosen in toolbar.
...
type: 'select',
label: 'Select ',
options: [{ default: '', test: 'Select1'}],
value: 'default'
...
How can I call function when Select1 is chosen?
Thanks.
-
I got the function to execute with
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...?
-
grid also needs to be refreshed.
-
Great, thanks.
Another question when setting filter, it works fine for type textbox with:
$("#grid_array").pqGrid( "filter", {
oper: 'replace',
data: [
{ dataIndx: 'column1', value: 'test' }
]}
But I have issues with type select and textbox with between condition...
-
Solved.