Hi , I'm very confused and need some help:
I have a page with 6 select components. Each component will be selected by the user. After the user selects an option from each component they will click on a submit button that will query the database based on the values of the select components.
I've created local storage variables for the 6 select components and binded them to each component respectively.
I've created a database service to run a query from the page. I need help with the JS code that needs to be placed in the request setting for the "where" parameter.
I then need to display the query results on another page.
The query will search 6 columns based on the 6 select components looking for a match for each user input. There are 2 possibilities where the query will return a True value 1) when the user input matches that of the database column or when the database column string is "all" this will repeat for all 6 columns.
This the user input matches all 6 columns then the results will be displayed.
If the above is false then the query will not select that row for display and move to the next row to evaluate the query.
Once the query is complete I need to display the results on another page and I'm not sure how to do that either.
I've been trying to read and understand the other post in the forum but haven't been successful in figuring out how to implement it in my program.
Please help!