grid.formedit.js
line:52
soptions = $.extend({},{text: colNames,value: v.index || v.name},this.searchoptions),
Should be:
soptions = $.extend({},this.searchoptions,{text: colNames,value: v.index || v.name}),
Because if the stype==”select” then searchoptions may contain the value atrribute.
And we will buildOption based on the fields.value which now is an object. That will make the search filter looks like this:
{“groupOp”%3A”AND”%2C”rules”%3A[{“field”%3A”[Object+Object]“%2C”op”%3A”eq”%2C”data”%3A”card”}]}
Copyright 2014 TriRand LtdAll Rights ReservedRSS
Back to Top