sherenegladysj - Tuesday, March 22, 2011 8:26 AM:
I just to want to append the textbox value whenever there is a change in another texbox in the same form. How to achieve this?
Thanks.
vishal_trivedi - Wednesday, April 6, 2011 8:06 AM:
Hi,
Try below code:
//Set below code on text change or any other event on which you wish to create a textbox.
var txtBox = document.createElement("textbox");
txtBox.setAttribute("value","abc");
return;
I have used it to create dynamic dropdown and it was successful.
Vishal