Need Some Help With dBase Table Look Up

Hi all!

First let me start by saying that a little bit of knowledge is dangerous - and I’m on the most wanted list!

I am building a site that allows users to check to see if a service is available in their zip code. I’ve done all the steps to make it work (user input, button, table), but here is my dilemma. There is only one row of data I want to return, but all of the table options have multiple rows.

I don’t want to show any data in the table until the user hits the search button. And I don’t want the slider bar, since there should only be one row.

Thanks for the assistance.

Hi,

I imagine you have a table which is connected to dataset and when user clicks search button you apply a filter on the dataset. So from the top of my head i see two ways how to approach it:

  • Solution 1: set some initial filter on dataset which would make the dataset empty, and change the filter when user hits search button.

  • Solution 2: hide the table component in onReady function and show it when filter is applied.

Let me know if that helped.