Hello,
I have some problems with grid appearance. All columns in grid are of TemplateColumn type. I implement ITemplate for each ItemTemplate and everything works correctly. I use "rubber" layout when split panel and grid on it are expanded to browser width and height. But:
1. When I insert in markup tag
2. With static headers turned on, when I use a pager control and go to another page, header reveals a small gap on the right (pic 2)
3. I can't see grid lines although I have set GridLines="Both".
Below is a grid markup:
Thank you.
I have some problems with grid appearance. All columns in grid are of TemplateColumn type. I implement ITemplate for each ItemTemplate and everything works correctly. I use "rubber" layout when split panel and grid on it are expanded to browser width and height. But:
1. When I insert in markup tag
<Scrolling AllowScroll="True" UseStaticHeaders="True" SaveScrollPosition="True" />
header remains expanded to full width but content is tightening to minimum width, just to fit data (see pic 1)2. With static headers turned on, when I use a pager control and go to another page, header reveals a small gap on the right (pic 2)
3. I can't see grid lines although I have set GridLines="Both".
Below is a grid markup:
<grid:RadGrid ID="Grid" runat="server" Height="99.5%" ShowStatusBar="True" AllowSorting="True" AllowAutomaticUpdates="True" AutoGenerateColumns="False" AllowPaging="true" PageSize="20" GridLines="Both"> <MasterTableView DataKeyNames="id" EditMode="InPlace" Width="100%" /> <ClientSettings> <Scrolling AllowScroll="True" UseStaticHeaders="True" SaveScrollPosition="True" /> <ClientEvents /> </ClientSettings> </grid:RadGrid>
Thank you.