CoreBOSBB
Using operators in webservice query - Printable Version

+- CoreBOSBB (https://discussions.corebos.org)
+-- Forum: Development (https://discussions.corebos.org/forumdisplay.php?fid=18)
+--- Forum: coreBOS Development (https://discussions.corebos.org/forumdisplay.php?fid=4)
+--- Thread: Using operators in webservice query (/showthread.php?tid=533)



Using operators in webservice query - Guido1982 - 12-16-2016

I've noticed in my portal it takes some time to load when there are 10+ salesorders to load. I'd like to setup some javascript AJAX loader that gets them one at a time. Is there a 'greater than' of 'smaller than' operator available in the webservice query syntax? This way I could store the ID of the last one and get the one after that asynchronously.


RE: Using operators in webservice query - joebordes - 12-16-2016

Yes, most normal operators are supported

https://wiki.vtiger.com/index.php/Webservice_reference_manual#Query

you will probably be able to find some examples in the test file

https://wiki.vtiger.com/index.php/Webservice_reference_manual#Query


RE: Using operators in webservice query - Guido1982 - 12-19-2016

Thanks!