Just want to make sure all the components are included and the input is set up correctly. When choosing dates, they are entered into the input as “undefined”. I’ve tried auto apply on and auto apply off. with same results.
Got everything working with the date range picker, including in the query, except, the value isn’t showing in the search field if I refresh the page even though the value is bound to query.orders_s_time_purchased which is in the url. I notice that the value is sent to the $_GET var with a backslash / between the two dates. I split that value on the server side to get the start and end dates, do I need to manipulate the query.orders_s_time_purchased value for it to appear correctly in the date range picker search field?
You can’t directly bind the value like this.
Date range picker has start and end date. These are available under dynamic attributes, so when you add start date, you need to split the url param by / and take the first value. For the end date you again split the url param by / but take the second value.