or

<meta http-equiv="X-UA-Compatible" content="IE=8"/>

All URLs when copied in the design view of the RadEditor become fully qualified. This happens in IE, Chrome, and Firefox.
Steps to reproduce:



AutoGenerateColumns = true; ClientSettings.Scrolling.AllowScroll = true; ClientSettings.Scrolling.SaveScrollPosition = true; ClientSettings.Scrolling.FrozenColumnsCount = 5; ClientSettings.Scrolling.UseStaticHeaders = true; Width = Unit.Pixel(1200); MasterTableView.TableLayout = GridTableLayout.Fixed;if (e.Column.UniqueName == "ID") e.Column.Display = false;e.Column.HeaderStyle.HorizontalAlign = HorizontalAlign.Center;e.Column.HeaderStyle.Width = Unit.Pixel(40);if (e.Column.UniqueName == "Process") e.Column.HeaderStyle.Width = Unit.Pixel(100);if (e.Column.UniqueName == "Act/Dept") e.Column.HeaderStyle.Width = Unit.Pixel(300);if (e.Column.UniqueName == "Visit") e.Column.HeaderStyle.Width = Unit.Pixel(80); margin-right: 0px !important;Hi All,
I currently have a RadComboBox with an asp:Checkbox working as needed. (Code behind is responsible for adding checkboxes and their "labels". (See aspx Code below)
I now need to figure out how to implement this in a column in a RadGrid, and seem to be running into real challenges. ANY help on this would be much appreciated!
<telerik:RadComboBox runat="server" Width="235px" ID="ddUsersSelector" HighlightTemplatedItems="true" ClientIDMode="Static" EnableVirtualScrolling="True" Skin="Default" ToolTip="Select Users" MaxHeight="200px"> <ItemTemplate> <asp:CheckBox runat="server" dependency = "adduser" ID="UserCheckBox" OnClick="CheckBoxClick(this)" Text="" ClientIDMode="Static" /> </ItemTemplate> <CollapseAnimation Type="OutQuint" Duration="200" /></telerik:RadComboBox>