Product Bundles
DevCraft
All Telerik .NET tools and Kendo UI JavaScript components in one package. Now enhanced with:
Web
Mobile
Document Management
Desktop
Reporting
Testing & Mocking
CMS
UI/UX Tools
Debugging
Free Tools
Support and Learning
Productivity and Design Tools
i am trying to set the rowheight of RadGrid to eg. 20 px.
RadGrid provides a property: mastertableview.itemstyle.height
but this doesnt work :-)
Is there any possibility to set RadGrids rowheight to fixed heigth???
Thanks in advance.
ItemStyle-Height="100" AlternatingItemStyle-Height="100"
to your Radgrid header declaration.
I was however able to get the height of my rows to change via the below method (VB). Perhaps your code logic was never being hit as well?
myRadgrid.MasterTableView.ItemStyle.Height = 100
myRadgrid.MasterTableView.AlternatingItemStyle.Height = 100