Skip to content
Advertisement

Tag: tabulator

resteasy: @QueryParam to parse nested array structure

I’m using a javascript library called tabulator to display data inside tables on the client side. The Tabulator js library provides a feature to encode a representation of filters in the query parameters of an ajax request. For example, here’s what the query params look like: https://host/myEndpoint?size=10&page=1&filters%5B0%5D%5Bfield%5D=username&filters%5B0%5D%5Btype%5D=like&filters%5B0%5D%5Bvalue%5D=filteredBy Here’s the same url decoded: https://host/myEndpoint?size=10&page=1&filters[0][field]=username&filters[0][type]=like&filters[0][value]=filteredBy If possible, I’d like to have a

Advertisement