Hi
We have recently upgraded to 5.2.0 and as part of migration we have changed the existing code as per the API 5.2.0 where we have created the pqgrid with:
filter: {
type: "select",
init: function() {
$(this).pqSelect({radio: true});
},
crules: [{condition: "equal"}],
valueIndx: "value", labelIndx: "text",
mapIndices: {"text": "text", "value": "value"},
options: [{'text': 'All', 'value': ''}, {'text': 'Yes', 'value': 'true'}, {'text': 'No', 'value': 'false'}],
listeners: ['change']
}
In the header section, I need a select box which shows given options with pqSelect plugin, but it is still displaying the default text box. Please suggest an alternate method for this.
NOTE: The above code was working in previous version.
Thanks