Hi, RadWindow has a property as "KeepInScreenBounds", on setting of which the radwindow can not be moved out of screen area. Lets have the similar or kind of property on Edit Popup of RadGrid with Editmode=Popup? The expectation is, edit popup of radgrid should not be moved outside of screen area that is visible to the user. This is perfectly achieved by for radwindows with "KeepInScreenBounds" property. Ticket url: http://www.telerik.com/account/support-tickets/view-ticket.aspx?threadid=953219 Thanks, Sunil
For the time being the following workaround can be used: CSS: <style> .RadGrid_Default .RadButton_Simple input { border: 0 none; } </style> ASPX: <telerik:RadGrid ID="RadGrid1" runat="server"> <MasterTableView> <Columns> <telerik:GridTemplateColumn UniqueName="EditColumn" AllowFiltering="false"> <HeaderStyle Width="70px" /> <ItemTemplate> <telerik:RadButton ID="rbEdit" runat="server" Text="Select" Skin="Simple" AutoPostBack="false"> </telerik:RadButton> </ItemTemplate> </telerik:GridTemplateColumn> </Columns> </MasterTableView> </telerik:RadGrid> where Simple is the name of the used Skin.
In case the RadGrid has several popup forms they are hidden behind the modal background.
I'd like to request for an expansion of the RadGrid header rotation. Currently the rgRotateHeader style that can be applied rotates +90deg. I find this an uncomfartable reading direction and I am sure my users will complain about it. While attempting to set some custom style corrections tot rotate -90deg with the help of Telerik support I found that the end result was not good enough to bring into production: wrapping direction was wrong and too many manual corrections had to be made to make the header fit. See attached screenshots where I made an attempt to rotate the header to override the rgRotateHeader style and the undesired wrapping results and the inconvenient required corrections in transform-origin. Maybe I could have made this work, but this is where I stopped my effort as it cost me too many time. I would very much like this a standard feature of the Radgrid. Also -45deg would be very nice to have!