| Author |
To add a control in JSP
|
Abin Thomas
Greenhorn
Joined: Dec 21, 2006
Posts: 3
|
|
Heelo, is it possible to add a control dynamically in a jsp page. exampl i uses a text box and if i enter a string another text box has to be added near to the first one else a combo box has to be added. is it possible.
|
 |
Jaikiran Pai
Marshal
Joined: Jul 20, 2005
Posts: 8208
|
|
|
Can be done using Javascript
|
[My Blog] [JavaRanch Journal]
|
 |
Bear Bibeault
Author and ninkuma
Marshal
Joined: Jan 10, 2002
Posts: 56528
|
|
The fact that you are in a JSP is moot as all this occurs on the client. You can either create and remove the elements under Javascript control as appropriate by using DOM manipulation, or if you know what you need in advance, create all of the elements up front and hide and show them as approrpiate.
|
[Smart Questions] [JSP FAQ] [Books by Bear] [Bear's FrontMan] [About Bear]
|
 |
 |
|
|
subject: To add a control in JSP
|
|
|