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
Hi Hristo,
It is working fine only if we remove the text-align:right from igg:datagrid.css class.
Thanks for your immediate response.
Aruna
Hi paruna,
Try taking text-align : right; out of the .igg_Pager style in ig_dataGrid.css. You need it to go to the left. Another solution would be to implement your own custom pager.
regards,David Young
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