Sharepoint Forum

 
Home » Forum » Sharepoint       Ask a questionRSS Feeds

Render Failed Error on List View

  Asked By: Chaim Odom         Date: Apr 14, 2006      Category: Sharepoint      Views: 2244

I have a custom list consisting of about 170 items. The list is set to display 100 items at a time.

A custom view has been created for the list which is sorted in descending order based on a date / time column.

The first page of results displays without a problem, but when clicking on next to get the rest of the results I get a "Render Failed" message.

I have changed the sort to work on the ID column as a work around, which is fine in this situation.

Is anyone aware of this being a known problem with Sharepoint Lists?

Tagged:            

 

4 Answers Found

 
Answer #1       Answered By: Christop Mcfadden          Answered On: Apr 14, 2006       

Just a guess, but does one of the rows on page two have a missing date?

 
Answer #2       Answered By: Gopal Jamakhandi          Answered On: Apr 14, 2006       

I did consider that and all of the columns seem to have a date entered... Even potentially more puzzling... if I increase the row limit to 200, it shows all the items without a problem!!

 
Answer #3       Answered By: Chantal Rosa          Answered On: Apr 14, 2006       

I've never seen it....................

 
Answer #4       Answered By: Lacey Daniels          Answered On: Mar 04, 2010       

Follow the steps to get rid of error
1. Edit the page showing list  items.
2. Add Content Editor Web part on it.
3. Add below script in Source Editor
<script src="ajax.googleapis.com/.../jquery.min.js" type= "text/javascript">
</script>
<script type="text/javascript">
function collapseGroups() {
$("img[src='/_layouts/images/minus.gif']:visible").parent().click();
}

_spBodyOnLoadFunctionNames.push("collapseGroups");
</script>
4. Save the Content.
5. Exit from the page Edit Mode
6. Go to list settings and edit default view  settings
7. Go to 'Order By' section
7. Select the option 'Expanded'
8. Click on 'Ok' to save the settings.
9. Now open the page to display all items of list. It should show you collapsed view of all items.

I think this will work for all.

 
Didn't find what you were looking for? Find more on Render Failed Error on List View Or get search suggestion and latest updates.


Your Answer
  • Answer should be atleast 30 Characters.
  • Please put code inside [Code] your code [/Code].