Hi All,
I’m working on application which required to display/download 5+ SharePoint lists data at once.
Using SPD & DV Webpart I’ve managed to merge all data and display in one view. However, challenge is that as soon as I raise display limit 30+ SP view start acting crazy and gives me error and performance goes down drastically.
Any suggestion how I can resolve this issue?
I’d look at the data and ask yourself if you need to return all the data at once. Ideally you could use the JavaScript Client side object Model to return the main columns and then dig into each item as required. This would help with the through-put. Also you might be able to provide a better user experience.
How much do you think the lists will grow? Why does ALL the data have to be displayed at once? Might not be very practical.
You can do export excel each list later you combine right..
I was thinking you need all 5+ lists data in one view.
Ajeet – Thanks for reply but server side code is not allowed.