Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 9155763
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 17, 20262026-06-17T12:39:11+00:00 2026-06-17T12:39:11+00:00

I have web part which displays items from any view. I’m displaying it through:

  • 0

I have web part which displays items from any view. I’m displaying it through:

protected override void RenderContents(HtmlTextWriter writer)
{
String res = "";
SPView def = list.Views[_ViewName];
res = def.RenderAsHtml();
writer.write(res);
}

How can I display ungrouped items if they grouped in view?

This is how it should look:

enter image description here

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-17T12:39:12+00:00Added an answer on June 17, 2026 at 12:39 pm

    You need to get the view’s Query property, then remove the <GroupBy> element. In most cases you’re probably OK doing this with a regular expression

    SPView def = list.Views[_ViewName];
    string query = def.Query;
    query = Regex.Replace(query, @"\<GroupBy.+?\</GroupBy\>", "", RegexOptions.IgnoreCase);
    def.Query = query;
    string res = def.RenderAsHtml();
    writer.Write(res);
    

    but in more complicated cases you might need to use a proper XML manipulator.

    What I’m unsure of here is whether RenderAsHtml requires you to call Update on the view in order for the changes to be reflected. Obviously you don’t want to do that because it’ll affect the view permanently.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I want to have a web part which displays a list of items. This
I have web application of which major part is javascript. I request images from
I have one web part (the provider) which displays insurance claims in a gridview.
I have a web part which uses many SharePoint controls like menu, SPGrid, tool
I have a custom Sharepoint 2010 web part that runs the user through a
We have a web part on which we display some data in a grid.
I have a SharePoint web part that I wrote in C# which is used
I have written a web part in C# for Sharepoint 2007 which has a
I have to create a web part that displays all site collections under the
I have a content query web part on page which i am using to

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.