Hi -
I'm using grouping by dragging them to the group region, which works fine. However, the group headers in the grid are displaying with dark grid lines going through them. I have tried the following code to turn off displaying of them but to no effect:
I also tried setting the style as follows, but couldn't effect the grid lines:
GroupHeaderItemStyle-BackColor="White"
I have included the code for my (growingly-complicated) grid and an image of what I'm seeing for good measure. Please let me know if you have any suggestions.
Thank you
I'm using grouping by dragging them to the group region, which works fine. However, the group headers in the grid are displaying with dark grid lines going through them. I have tried the following code to turn off displaying of them but to no effect:
<
GroupPanel
SkinID
=
"Office2007"
>
<
PanelItemsStyle
GridLines
=
"None"
/>
<
PanelStyle
GridLines
=
"None"
</GroupPanel>
I also tried setting the style as follows, but couldn't effect the grid lines:
GroupHeaderItemStyle-BackColor="White"
I have included the code for my (growingly-complicated) grid and an image of what I'm seeing for good measure. Please let me know if you have any suggestions.
Thank you
<
telerik:RadGrid
ID
=
"DetailsGrid"
runat
=
"server"
CellSpacing
=
"0"
Skin
=
"Office2007"
GridLines
=
"Vertical"
AllowSorting
=
"true"
ShowGroupPanel
=
"true"
AllowPaging
=
"false"
OnNeedDataSource
=
"DetailsGrid_NeedDataSource"
OnUpdateCommand
=
"DetailsGrid_UpdateCommand"
OnItemDataBound
=
"DetailsGrid_ItemDataBound"
OnItemCreated
=
"DetailsGrid_ItemCreated"
OnDataBound
=
"DetailsGrid_DataBound"
OnDataBinding
=
"DetailsGrid_DataBinding"
GroupHeaderItemStyle-BackColor
=
"White"
>
<
SelectedItemStyle
CssClass
=
"selectedRow"
/>
<
ClientSettings
ReorderColumnsOnClient
=
"true"
EnablePostBackOnRowClick
=
"false"
AllowDragToGroup
=
"true"
>
<
Resizing
AllowColumnResize
=
"true"
EnableRealTimeResize
=
"true"
ShowRowIndicatorColumn
=
"true"
AllowResizeToFit
=
"true"
/>
<
ClientEvents
OnGridCreated
=
"GridCreated"
OnKeyPress
=
"KeyPress"
OnRowDblClick
=
"RowDblClick"
OnCommand
=
"GridCommand"
/>
<
Selecting
AllowRowSelect
=
"true"
CellSelectionMode
=
"SingleCell"
/>
<
Scrolling
UseStaticHeaders
=
"true"
AllowScroll
=
"true"
/>
</
ClientSettings
>
<
MasterTableView
TableLayout
=
"Fixed"
EditMode
=
"InPlace"
AutoGenerateColumns
=
"false"
DataKeyNames
=
"opportunityProductId"
ShowFooter
=
"true"
>
<
HeaderStyle
HorizontalAlign
=
"Center"
Width
=
"135px"
Font-Bold
=
"true"
/>
<
Columns
>
...
</
Columns
>
</
MasterTableView
>
</
telerik:RadGrid
>