How to use preDefined dynamically ?

How to use preDefined dynamically ?

JTrossetSLJTrossetSL Posts: 1Questions: 1Answers: 0

Hello,
I tried to explain in English my problem.

I have a page with a datatable and searchBuilder. When I call my page i have some parameters like "public1.php?aep=1 for example

And i want to put , ''' { data: 'AEP', condition: '=',value: ['1'] }''' in ''' searchBuilder: { preDefined''' dynamically when the datatable is loading.
I try to make a object variable and put in criteria and put preDefined : myVarObject. But that not work.

I am looking for work with DataTable().searchBuilder.rebuild et getDetails() but when my DataTable is loading getDetails return Empty and when i put my varObject in rebuild that's not work

Tomorrow i try to translate my question in a better english :-p

Thank you very much in advance

Answers

  • allanallan Posts: 61,446Questions: 1Answers: 10,054 Site admin

    Use URLSearchParams (docs) to get the query string parameters, which you will then be able to parse into the object for preDefined.

    Allan

Sign In or Register to comment.