ParamQuery grid support forum
General Category => Help for ParamQuery Pro => Topic started by: gmswsd on May 06, 2020, 10:03:08 pm
-
In the toolbar how do I get the value of the options that was selected so it can be passed as a parameter to the function.
{
type: 'select'
options: [ ["First"],
["Second"],
["Third"]
],
listener function(){
reload( options? );
}
}
-
value of a select list can be obtained as $(evt.target).val()
listener: function (evt) {
//$(evt.target).val()
}
this example shows usage of select lists in the toolbar: https://paramquery.com/pro/demos/import-xlsx
-
Thanks paramvir
That worked perfectly.
That and making it a single array.