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

Border appears in the NestedView of Self-hierarchic grid

2 Answers 45 Views
Grid
This is a migrated thread and some comments may be shown as answers.
RadTony
Top achievements
Rank 1
RadTony asked on 15 Apr 2010, 10:35 AM
Hi,

       Evrerything was good until yesterday and suddenly a border appears in all Self-hierarchic RadGrids I have created.
The only thing I done was this (and that too in a project apart from all other important ones)

MasterTableView.TableLayout =

GridTableLayout.Fixed;
and
NestedView.TableLayout = GridTableLayout.Fixed; in the "HideExpandColumnRecursive" method.

What puzzles me is that I have done it in a project apart and this affected RadGrids in all projects (see attachment) as if it's a Dll problem.
I wonder if something has definitely changed just by putting these two lines in an experimental project.

Please tell me what I can do to remove the borders for the detailTable ? I will also search for a solution meanwhile.

Thanks in advance,
RadTony

 

2 Answers, 1 is accepted

Sort by
0
Dimo
Telerik team
answered on 19 Apr 2010, 05:02 PM
Hi RadTony,

Have you set the GridLines property? It should not be set or it should be set to "None".

Are you using a custom skin? If yes, then you should use the following CSS style in the skin:

div.RadGrid_Default  .rgHeader,
div.RadGrid_Default  th.rgResizeCol,
div.RadGrid_Default  .rgRow  td,
div.RadGrid_Default  .rgAltRow  td,
div.RadGrid_Default  .rgEditRow  td,
div.RadGrid_Default  .rgFooter  td
{
    border-style:none;
    border-width:0;
}

(replace "Default" on all lines with the actual skin name)

Greetings,
Dimo
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
RadTony
Top achievements
Rank 1
answered on 19 Apr 2010, 09:46 PM
Hi Dimo,

    Thanks for the reply. Indeed I changed GridLines property to "Both" ... I'll give a try without that property !
Seems that I should get more experience with the basics of RadGrid !

- RadTony 
Tags
Grid
Asked by
RadTony
Top achievements
Rank 1
Answers by
Dimo
Telerik team
RadTony
Top achievements
Rank 1
Share this question
or