ParamQuery grid support forum
General Category => Help for ParamQuery Pro => Topic started by: bsolteam on June 01, 2015, 04:24:12 pm
-
Hi Team,
I am using the Filtering for the column header.The filtering is happening only for the case sensitive letter, but not filtering for the case insensitive letter. I have gone through the demo code also , but there it is working fine for both the cases. I have some sample code what i am using please check the below code and help me for this query.
var colM = {
{ title: fleetDetails.vesselNameColTitle+" <img src='${pageContext.request.contextPath}/resources/images/arrow-us-down.png'> ",
width:fleetDetails.vesselNameColWidth,
hight:fleetDetails.colHeight,
dataType:fleetDetails.colDataType,
dataIndx:fleetDetails.vesselNameColDataIndx,
sortable:fleetDetails.colSortable,
align:fleetDetails.vesselNameColAlign,
halign:fleetDetails.vesselNameColHalign,
resizable:fleetDetails.colresizable,
filter: { type: 'textbox', condition: 'begin', listeners: ['keyup'] },
}
and in object are writing the this code
filterModel: { on: true, mode: "AND", header: true },
-
is it remote filtering?
Please also check definition of colModel which is an array that begins with [ and not {
Also verify that fleetDetails.colDataType is a string.
-
Hi Team,
Thanks for the reply,
I am doing the local filtering , the colM is starting with [ this symbol only. The datatype is also string only.
but still we are finding the solution for this case insensitive filtering.
Thanks,
Bsol Team.
-
Please share a jsfiddle so that I can look into it.
-
Hi team,
Thanks for the suggestion, the issue is resolved. I was declaring the data type string itself but in that also the string was typed as String, ie 's' was in upper case letter. After that I changed to Lower case s then its working fine.
Thanks
Bsol Team,