Hi,
(sorry for my bad english)
I’ve tested the Search functionnality, and it seems to be a bug.
In my grid i have hidden fields, and i don’t want hidden fields to be searchable. Actually all fields (hidden or not) are searchable.
So i looked in formedit.js and change the following code :
hc = cM.hidden===true ? true : false;
sf = (cM.search==false) ? false: true;
by this code :
hc = (cM.hidden==”true”) ? true : false;
sf = (cM.search==”false”) ? false: true;
And now hidden fields are no longer searchable.
So it seems to be bug, are you agree.
Thanks a lot for your plugin,
Nicolas
Copyright 2014 TriRand LtdAll Rights ReservedRSS
Back to Top