- Mark as New
- Follow
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report
That is probably because the binding you used to populate the fields might have used specific indexing of the return values from the webservice..
For example, if I have bound a field to an XML tag that repeats more than once in XML..
If I map the fields in the repeating section to specific indexing of the tag, then when add a new instance at runtime, it will carry the same value and display..
$record.WeeklyTimeEntry.WeekDataList.Week[0].Regular
But if I use the "[*]" notation while binding the field then it will not carry the value to the instance of the field.
$record.WeeklyTimeEntry.WeekDataList.Week[*].Regular
Hope you can translate the same to webservice binding..I only gave an example of one field "Regular"..
Let me know if you still have issues..
Thanks
Srini
Views
Replies
Total Likes