This is a migrated thread and some comments may be shown as answers.

Disable Row Details

3 Answers 91 Views
GridView
This is a migrated thread and some comments may be shown as answers.
Pranama Moorthy
Top achievements
Rank 1
Pranama Moorthy asked on 29 Jun 2010, 07:11 AM
Hi Telerik Team,
                            In RadGridView I was actually looking for a summary view, which will give be count of all the data, with drill down functionality. Hence I tweaked the properties to come up with a grid that looks like attached file. But I want to be able to hide the row details (ones shown in red). Could you please advice how I could achieve this? I know this row details appears as I have two rows, which satisifies the conditiion of Region(Grouped Column)=Asia; Exception (Grouped Column)=Marketer Not Found; Exception Status (Grouped Column)= COMPLETED. But still, since I could not come up with a summary grid, I want to only show grouped labels (with aggregate functions ie (Exception Count).

Please advice, I want the section (in red) to be removed, when I am grouping.

3 Answers, 1 is accepted

Sort by
0
Pavel Pavlov
Telerik team
answered on 29 Jun 2010, 08:02 AM
Hi Pranama Moorthy,

I can not see any section in red in the attached image.

Kind regards,
Pavel Pavlov
the Telerik team
Do you want to have your say when we set our development plans? Do you want to know when a feature you care about is added or when a bug fixed? Explore the Telerik Public Issue Tracking system and vote to affect the priority of the items
0
Pranama Moorthy
Top achievements
Rank 1
answered on 29 Jun 2010, 08:20 AM
Please find the updated image.. Apologies for not putting the right one before
0
Pavel Pavlov
Telerik team
answered on 01 Jul 2010, 01:51 PM
Hi Pranama Moorthy,

Please try something like :
<telerik:RadGridView x:Name="RadGridView1" RowHeight="0" >
    <telerik:RadGridView.RowStyle>
        <Style TargetType="gridView:GridViewRow">
            <Setter Property="Height" Value="0" />
            <Setter Property="MinHeight" Value="0" />
        </Style>
    </telerik:RadGridView.RowStyle>
This should set the row height to 0 , and no rows would appear within the grouprow.

Regards,
Pavel Pavlov
the Telerik team
Do you want to have your say when we set our development plans? Do you want to know when a feature you care about is added or when a bug fixed? Explore the Telerik Public Issue Tracking system and vote to affect the priority of the items
Tags
GridView
Asked by
Pranama Moorthy
Top achievements
Rank 1
Answers by
Pavel Pavlov
Telerik team
Pranama Moorthy
Top achievements
Rank 1
Share this question
or