I am using jqgrid with multiplegroup option true for search. My filter looks like the following:
{"groupOp":"OR",
"rules":[{"field":"Total_case","op":"eq","data":"29"}],
"groups":[{"groupOp":"AND",
"rules":[{"field":"Total_case","op":"eq","data":"2"},{"field":"percent","op":"eq","data":"100"}],
"groups":[]}]}
I have rows with both total case = 2 ,percent = 100 and total case = 29. Since outer condition is "OR" condition, I am expecting two rows. However it displays no record. What is wrong?