Working with this rad grid
And it appears that all the menu items are more on the left side of the screen. how do i get them so that they are center aligned with widths of 25%. I tried doing RadMenuItem.width = "25%" but doing that on each of them makes it wrap to the next line. It also doesnt center the text, so not sure what to do.
J
| <telerik:RadMenu ID="RadMenu1" runat="server" |
| Width="100%" OnItemClick="RadMenu1_ItemClick" |
| > |
| <Items> |
| <telerik:RadMenuItem Text="Item1" runat="server" |
| Selected="true" |
| /> |
| <telerik:RadMenuItem Text="Item2" runat="server" |
| /> |
| <telerik:RadMenuItem Text="Item3" runat="server" |
| /> |
| <telerik:RadMenuItem Text="Item4" runat="server" |
| /> |
| </Items> |
| </telerik:RadMenu> |
And it appears that all the menu items are more on the left side of the screen. how do i get them so that they are center aligned with widths of 25%. I tried doing RadMenuItem.width = "25%" but doing that on each of them makes it wrap to the next line. It also doesnt center the text, so not sure what to do.
J