I need to get a value from a date picker to push to a parameter how do I do this in Application Studio ?
I guess you are going to set it to a transview field and use the value stored there.
I want to set a parameter in a BAQ to the datepicker , right now I just have it where the user puts the parameter in when the page loads, but I was wanting to make more user friendly and want to be able to have user select at date on date picker and hit go button then have it pass the value of the datepciker to the parameter of the BAQ
A Date Picker is going to give you a value with a time stamp, something like: 2025-11-24T00:00:00
Your Parameter probably wants something cleaner, like 11/24/2025
I would Bind your Date Picker to TransView.Date (or something like that).
Then, have an event with a Trigger of DataTable > Columns Changed > TransView > Date (or whatever you called your field).
Then a Row Update to pass the value to your Parameter binding.
For example: Row-Update
TransView.MyDateParam
Expression: new Date('{TransView.Date}').toLocaleDateString()
But I don’t have a column, in the BAQ for the date, I am just wanting to pass a date they choose to the BAQ but I have thought of adding a custom column to do this it may be my best bet if I cannot actually get the value of a DatePicker
Do that, and pass TransView.Date to the BAQ…