Hi,
I am trying to code the front end for our java application.
I have problem putting my ideas into script/html code.
the user of this application should be able to add multiple records of information , which are shown instantaneously in the list box upon clicking add button.I do not have to use ajax for this.
For example there is a personal address form which contains
fields like Full Name, street address, city , state , zip, country.
when user fills in all the info , clicks on the "add address" button .then that address is added to the temporary list, which is like a list box.this address information is stored in the "address" java bean. The form fields are cleared.User can enter as many addresses as possible .once add button is clicked each one is added instantaneously to the list box , which is in the bottom of the screen.
All the added addresses are maintained as an array list of address java beans.
Any coding ideas or prototypes are highly appreciated.
Thanks

