http://nyceane.googlepages.com/Hugeheader.jpg
As you can see the header is huge and can't be changed, I've tried several way to change its font, height through
As you can see the header is huge and can't be changed, I've tried several way to change its font, height through
<
GroupHeaderItemStyle Height="10px" />
and none of it works. my code is pasted below, would you please help me to shrink the header? my code is pasted following| <telerik:RadGrid ID="AppointmentList" runat="server" Width="600px" |
| Skin="Hay" GridLines="None" AutoGenerateColumns="False" AllowPaging="True" |
| PageSize="15" |
| OnItemDataBound="Appointment_ItemDataBound" CellPadding="0" > |
| <MasterTableView Width="100%" GroupLoadMode="Client"> |
| <GroupByExpressions> |
| <telerik:GridGroupByExpression> |
| <SelectFields> |
| <telerik:GridGroupByField FieldAlias="RequestDate" FieldName="RequestDate" HeaderText="Date" FormatString="{0:d}" HeaderValueSeparator=" " /> |
| </SelectFields> |
| <GroupByFields> |
| <telerik:GridGroupByField FieldAlias="RequestDate" FieldName="RequestDate" HeaderText=" " HeaderValueSeparator=" " /> |
| </GroupByFields> |
| </telerik:GridGroupByExpression> |
| </GroupByExpressions> |
| <Columns> |
| <telerik:GridTemplateColumn HeaderText="Name" Groupable="false" UniqueName="Title"> |
| <ItemTemplate> |
| <div> |
| <asp:HyperLink ID="HlinkSubject" runat="server"><%# Eval("Name") %></asp:HyperLink> |
| <span style="font-style:italic; display:block">Symptom: <%# Eval("SymptomList") %></span> |
| </div> |
| </ItemTemplate> |
| </telerik:GridTemplateColumn> |
| <telerik:GridBoundColumn HeaderText="Reason" DataField="Reason"></telerik:GridBoundColumn> |
| </Columns> |
| <RowIndicatorColumn> |
| <HeaderStyle Width="20px"></HeaderStyle> |
| </RowIndicatorColumn> |
| <ExpandCollapseColumn> |
| <HeaderStyle Width="20px"></HeaderStyle> |
| </ExpandCollapseColumn> |
| </MasterTableView> |
| </telerik:RadGrid> |
