Hi there,
I have an issue with my grid, the value inside the columns are cut off / clipped off.
I've set my TableLayout=Auto, ClipCellContentOnResize=false and my grid is using AutoGenerateColumns=True.
I guess the main reason is because the grid can't resize properly if the grid is hidden or not diplayed on the page.
I read somewhere in the forum that the resizing is done using javacript.
The grid is inside the a tab (RadPageView) and I have a few tabs to load.
When I clicked on LoadAll button, the tab with the grid is not shown yet. And the result the values are cut off.
But if I'm in the tab with the grid and load the grid, the values are shown in full.
Can this be fixed?
If it's not possible, how to call the auto resize columns method?
Thanks
First
I have an issue with my grid, the value inside the columns are cut off / clipped off.
I've set my TableLayout=Auto, ClipCellContentOnResize=false and my grid is using AutoGenerateColumns=True.
I guess the main reason is because the grid can't resize properly if the grid is hidden or not diplayed on the page.
I read somewhere in the forum that the resizing is done using javacript.
The grid is inside the a tab (RadPageView) and I have a few tabs to load.
When I clicked on LoadAll button, the tab with the grid is not shown yet. And the result the values are cut off.
But if I'm in the tab with the grid and load the grid, the values are shown in full.
Can this be fixed?
If it's not possible, how to call the auto resize columns method?
Thanks
First
<telerik:RadGrid ID="myGrid" runat="server" |
ItemStyle-Wrap="false" AlternatingItemStyle-Wrap="false" |
onitemdatabound="myGrid_ItemDataBound" EnableViewState="false"> |
<MasterTableView AutoGenerateColumns="true" TableLayout="Auto" Width="600" ></MasterTableView> |
<ClientSettings> |
<Scrolling AllowScroll="True" UseStaticHeaders="True" SaveScrollPosition="true" ScrollHeight="400"></Scrolling> |
<Resizing ClipCellContentOnResize="false" AllowColumnResize="false"/> |
</ClientSettings> |
</telerik:RadGrid> |