Link to home
Start Free TrialLog in
Avatar of Moiz Saifuddin
Moiz Saifuddin

asked on

DataGrid Paging

How can I reduce the pager height of the datagrid less than its default height...do i have to reduce the height of the datagrid altogether or something else..





Moiz
Avatar of iboutchkine
iboutchkine

what is pager height ?
Avatar of Moiz Saifuddin

ASKER

I have DataGrid Paging Enabled then if you check the DataGrid properties there is a property , PagerStyle, in that i want to reduce the height of that bottom row on the datagrid which enables datagrid paging...


If you paste this on yur html page and see on the bottom row of the grid there is 1,2....
that row i want to reduce its height...



<asp:datagrid id="DataGrid1" style="Z-INDEX: 101; LEFT: 179px; POSITION: absolute; TOP: 47px" runat="server" Width="818px" BackColor="WhiteSmoke" BorderColor="#999999" BorderWidth="1px" BorderStyle="None" HorizontalAlign="Center" CellPadding="3" AutoGenerateColumns="False" GridLines="Vertical" ShowFooter="True" AllowPaging="True" PageSize="8" OnPageIndexChanged="NewPage" Height="236px">
<SelectedItemStyle Font-Bold="True" HorizontalAlign="Left" ForeColor="White" BorderStyle="Groove" BackColor="#008A8C"></SelectedItemStyle>
<EditItemStyle Font-Bold="True" HorizontalAlign="Center" VerticalAlign="Middle"></EditItemStyle>
<AlternatingItemStyle BackColor="Gainsboro"></AlternatingItemStyle>
<ItemStyle Font-Size="XX-Small" Font-Names="Verdana" HorizontalAlign="Center" ForeColor="Black" VerticalAlign="Middle" BackColor="#EEEEEE"></ItemStyle>
                        <HeaderStyle Font-Size="XX-Small" Font-Names="Verdana" Font-Bold="True" HorizontalAlign="Center" Height="1px" ForeColor="MediumBlue" VerticalAlign="Middle" BackColor="#C0C0FF"></HeaderStyle>
                        <FooterStyle Font-Size="XX-Small" ForeColor="Black" BackColor="DarkSeaGreen"></FooterStyle>
                        <Columns>
                              <asp:BoundColumn DataField="DisplayDate" HeaderText="Appt Date/Time">
                                    <ItemStyle HorizontalAlign="Center" Width="189px" VerticalAlign="Middle"></ItemStyle>
                              </asp:BoundColumn>
                              <asp:BoundColumn DataField="TypeName" HeaderText="Appointment Type"></asp:BoundColumn>
                              <asp:BoundColumn DataField="LOCNAME" HeaderText="Location"></asp:BoundColumn>
                              <asp:BoundColumn DataField="RESNAME" HeaderText="Resource"></asp:BoundColumn>
                              <asp:BoundColumn Visible="False" DataField="SCHEDID" HeaderText="SCHEDID"></asp:BoundColumn>
                              <asp:ButtonColumn Text="Confirm" HeaderText="Confirm" CommandName="Select">
                                    <ItemStyle ForeColor="DarkRed"></ItemStyle>
                              </asp:ButtonColumn>
                              <asp:EditCommandColumn ButtonType="LinkButton" UpdateText="Update" HeaderText="Cancel" CancelText="Cancel" EditText="Cancel">
                                    <ItemStyle ForeColor="DarkRed"></ItemStyle>
                              </asp:EditCommandColumn>
                              <asp:BoundColumn Visible="False" DataField="Last_Status" HeaderText="Last_Status"></asp:BoundColumn>
                        </Columns>
                        <PagerStyle HorizontalAlign="Left" ForeColor="Black" BackColor="LightSteelBlue" Mode="NumericPages"></PagerStyle>
                  </asp:datagrid>
ASKER CERTIFIED SOLUTION
Avatar of gregoryyoung
gregoryyoung
Flag of Canada image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial