create a select box in which data is populated from selecting another select box and it is editable - select

I have created two select box. in both, fetching data from database. By selecting first select box the second select box gets auto populated. What I want to do is that this second select box should be editable that is the user can type input also. What I have done now is that used datalist for second select box which is doing the thing, but I want to show the auto populated data as selected option in datalist

Related

How can I create a LOV where the user can select as many options as they want (like a series of checkboxes and select all that apply)?

How can I create a list of values (LOV) where the user can select as many options as they want (like a series of checkboxes and select all that apply)? I am only away of being able to select one option as opposed to selecting many, but please correct me if I'm wrong.
"The property you will attach the LOV to will need to be an array. Then in TC you can multi-select more than one value of the LOV."
Source: https://community.sw.siemens.com/s/question/0D54O00007DC6yWSAT/how-can-i-create-a-lov-where-the-user-can-select-as-many-options-as-they-want-like-a-series-of-checkboxes-and-select-all-that-apply

FileMaker: Allow the user to filter the table and then revert back to showing all records

I've just started using FileMaker Pro. I have created a spreadsheet in Excel which I'm basically trying to recreate in FileMaker.
I have my table (or, Portal) set up with data. Above the table I have 3 drop down fields, which pull their values from the table below. Based off of the value of the drop down fields, I want a GO button that will filer all of the table items to match what is in the 3 drop downs.
Image the table contains Car, Colour, Year. If the user selects Mercedes, Red, 1980 from the 3 drop down fields, I want the table to only show results that match those fields.
Ideally I'd like a button to trigger this action, and another button that resets it so it shows all results.
I can see that you can filter the table when you double click it, but this seems to set it to permanently filter. I want a button to do it basically.
Would appreciate the help! Thanks

Combo Box Dropdown List from Table

First time creating forms to insert into a database.
I'm trying to create a drop down combo box that lists the entries in the second column...
This is in a seperate table. The issue I'm running into is how do I show what's in the Description column, but when I insert into the form, it's corresponding PMRT_Need value is put in the table.
The database is as such that it HAS to be the PMRT_NEED value unfortunately.
Thanks for your time!
After setting the Row Source to your appropriate table/query:
Set the Bound Column to column 1 (i.e. the PMRT_NEED field)
Set the Column Count to 2
Set the Column Widths to something like 0cm;5cm (adjusting the second width to suit your data) such that the first column isn't displayed to the user.
This ensures that your combo box returns the value of the PMRT_NEED field for the selected item, but only the Description is displayed to the user.

Access Update a table row based on a combo box selection

I have a table I would like to edit based on a combo box selection in a form.
For example, let's say I have a table that has the following fields:
Computer Name | Location | Number of Updates installed | etc.
What I have done is created a form based on this table. It includes a combo box to select the computer name that's being updated. What I would like to do is fill out the rows based on the computer selected in the combo box.
What's the best way to do this?

showing list on text change event

I am using VS 10 and SQL Server 2008. I want to show popup-list on text box change event, such that user can select from the list. This list will show 3 columns of particular table.
User should be able to select a particular item from the list and that selected record will be extracted in form fields.
How can I create such a pop-up list? and call it on text-change event?
you can use Popup and ListView.Set ListView as child of Popup control.3 columns can set as Listview sub items(3 subitems in a ListView Item).In text changed event your textbox, show pop-up control.