I have a complex service which runs and then returns a string value from the the DB. I want the result of this service to append the string to an already existing listitem on the page.
This listitem is already populated to some extend by other service, I cannot really just run current service over it (as it will overwrite the results). To summarize my problem is to:
- Find the last element in the already existing list.
- Append the new value after this element.