Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
50
Server Side Filter
posted

I was wondering if there is a way in UI Grid for Angular to disable certain features as far as Filtering goes.

Also is there a way to change the string it sends to remote ? In my case it send something like this

POST /leads/list?inlinecount=allpages&orderby=s_contact_email&sortdir=desc&$filter=substringof(%27miller%27,p_contact_name)%20and%20not%20substringof(%27gmail.com%27,%20s_contact_email)%20and%20lead_id%20eq%20null%20or%20startswith(lead_id,%275%27)&offset=0&rowcount=10

which when decoded looks like this

POST/leads/list?inlinecount=allpages&orderby=s_contact_email&sortdir=desc&$filter=substringof('miller',p_contact_name) and not substringof('gmail.com', s_contact_email) and lead_id eq null or startswith(lead_id,'5')&offset=0&rowcount=10

in this case it uses "substringof" and "not substringof" which makes it hard to do a good case statement. In some of the docs i find that they use doesnotcontain and contains which makes it way easier to handle.

Also does anyone know of some sample code how to break down the querystring in NodeJs on server side. Would be great to have a starting point

Parents
No Data
Reply Children
No Data