What are or where can I find a list of "conditional Operators" for ej.Query().where("fieldName","operator","value")
e.g. dm = ej.DataManager(window.gridData).executeLocal(ej.Query().where("OrderID","lessthan","10253"));
Is it possible to have an AND condition in the where such as
OrderID > 10253 AND OrderID < 12000
How would I get the result of OrderID in (10253, 10254, 10258, 10260, 10264)
Thanks
Morgan