- Mark as New
- Follow
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report
Check the data binding for the Textfields..
If you set it to Global, then all the fields with the same name will display the same value. That means if you add fields at runtime, they all carry the same name and so they alldisplay the same value.
But if you do not want to display the same value for the TextField on form and for the newly added TextFields, then you have to set it to either Normal/ None.
In your case, you probably have Global. Change it to Normal/ None.
Thanks
Srini