I have a fairly simple form with a list, a text box and two buttons.
List items are populated from the sql database table. The user can select one or more items from the list.
The text box is used to record more detailed information about the items in the list. You can then click one button to update another database table with this data.
I want to do this where, if any elements are selected from the list, this content is automatically copied to the text field on the fly as they are selected. Is it possible?
I was able to do this on a button click event - just not on the fly, as they are selected. I want this to happen before additional data is sent to the database
I also tried to use several different events in the list, but could not get the results I'm looking for.
Any suggestions?
source share