Everytime i try to add a a test field into a text box i am unable to do so. If i add a text field the whole text becomes the text field itself erasing all the other text i have entered. The text is a part of a table row which is flowed. Please help.
Everytime i try to add a a test field into a text box i am unable to do so. If i add a text field the whole text becomes the text field itself erasing all the other text i have entered. The text is a part of a table row which is flowed. Please help.
You're trying to concatenate a string from one text field onto the end of another?
As far as I know, you would need to do that in javascript. The following should do it, although there may be easier ways:
var newText = text1.rawValue + text2.rawValue;
text1.rawValue = newText;