How can I filter the grid on a condition that needs both "and" and "or"? For example:
status = "New" AND (firstName contain "john" OR lastName contain "john" OR companyName contain "john")
I played with filterModel: { on: true, mode : "OR"} and filterModel: { on: true, mode : "AND"} but couldn't get it to work. Any advice is greatly appreciated.
Thank you