Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
255
How to show pageing buttons on left side of footer?
posted

Hi ,

I have already posted  a message regarding the showing the pageing on left side corner of webdatagrid til now i didn't get any reply.

Pls let me know whether it is possible or not to show the paging button on left side corner of the  bottom of grid ?

or provide me the alternate solution ?

If we are not receiving the solution for posted messages then it is not useful Forums section fo us pls try to reply soon

it is very urgent

thanks

Parents
No Data
Reply
  • 8160
    posted

    Hello paruna,

    you can set PagerCssClass:

      <title></title>
        <style type="text/css">
        .PagerStyle
        {
            text-align: left;
        }
       
        </style>
    </head>
    <body>
        <form id="form1" runat="server">
        <div>
            <ig:WebDataGrid ID="WebDataGrid1" runat="server" Height="350px" Width="400px">
                <Behaviors>
                    <ig:Paging PagerCssClass="PagerStyle">
                    </ig:Paging>
                </Behaviors>
            </ig:WebDataGrid>

    Please let me know if this is helpful for you

     

Children