.RadGrid_Web20 .rgHeader, .RadGrid_Web20 .rgHeader a { color: #ffffff !important; font-family: Arial !important; font-size: 8pt !important; font-weight: bold !important; text-decoration: none; text-align: left; border-color: #FFFFFF !important; writing-mode: tb-rl !important; filter: flipV flipH !important; }Hi,
I've my design as follows....attached herewith the screenshot also....
<table>
<tr>
<td id="Td1">
<span class="smallTitle">Column Repeat</span><br />
<telerik:RadComboBox ID="uxCheckboxChoicesColumnRepeat1" runat="server" OnClientSelectedIndexChanged="CheckBoxChoicesColumnRepeatChanged1">
<Items>
<telerik:RadComboBoxItem Text="One Column" Value="1" />
<telerik:RadComboBoxItem Text="Two Columns" Value="2" />
<telerik:RadComboBoxItem Text="Three Columns" Value="3" />
<telerik:RadComboBoxItem Text="Four Columns" Value="4" />
</Items>
</telerik:RadComboBox>
</td>
</tr>
<tr>
<td>
<asp:Panel runat="server" ID="uxJumpPanel">
<telerik:RadListView ID="feeldChoices" runat="server" OnItemDataBound = "feeldChoices_ItemDataBound" >
<ItemTemplate>
<table cellpadding="0" cellspacing="0">
<tr>
<td>
<telerik:RadTextBox runat="server" Text='<%# Eval("Text") %>' onkeyup="SyncListToCheckbox(this)"
ID="uxItemText" Width="260">
</telerik:RadTextBox>
<telerik:RadComboBox runat="server" ID="uxSelectPage1" ></telerik:RadComboBox>
</td>
<td>
<img id="imageAdd" style="cursor: pointer" runat="server" onclick="InitiateAjaxRequest('1,3,add|' + this.id + ',' + selectedDockId); SetUnsaved();"
alt="Add field choice" border="0" src="Images/Add.png" />
</td>
<td>
<img id="imageDelete" style="cursor: pointer" runat="server" onclick="InitiateAjaxRequest('1,3,remove|' + this.id + ',' + selectedDockId); SetUnsaved();"
alt="Delete field choice" border="0" src="Images/Delete.png" />
</td>
</tr>
</table>
</ItemTemplate>
</telerik:RadListView>
</asp:Panel>
</td>
</tr>
</table>
my intention is, when i click the edit button all the 3 radcombobox (uxSelectPage1) should display the already saved data.
I tried Itemdatabound its not working for me...any other solution.
//Thanks

<telerik:RadComboBox runat="server" ID="instituicao" Width="450" CheckBoxes="true" AutoPostBack="true" ItemsPerRequest="10" EnableLoadOnDemand="True" ShowMoreResultsBox="true" EnableVirtualScrolling="true" OnItemChecked="instituicao_ItemChecked" OnItemsRequested="instituicao_ItemsRequested" />protected void instituicao_ItemsRequested(object sender, RadComboBoxItemsRequestedEventArgs e){ DataTable dt = GetData(); int total = dt.Rows.Count; int itemOffset = e.NumberOfItems; int endOffset = Math.Min(itemOffset + instituicao.ItemsPerRequest, total); e.EndOfItems = endOffset == total; instituicao.Items.AddRange( dt.Rows.OfType<DataRow>().Skip(itemOffset).Take(endOffset - itemOffset) .Select(i => new RadComboBoxItem(i["Id"] as string, i["Id"] as string)));}protected void instituicao_ItemChecked(object sender, RadComboBoxItemEventArgs e){ // do stuff}private DataTable GetData(){ DataTable dt = new DataTable(); dt.Columns.Add("Id", typeof(string)); for (int i = 1; i <= 100; i++ ) { DataRow row = dt.NewRow(); row["Id"] = i; dt.Rows.Add(row); } return dt;}[ArgumentOutOfRangeException: Index was out of range. Must be non-negative and less than the size of the collection.Parameter name: index] System.Collections.ArrayList.get_Item(Int32 index) +7487944 System.Web.UI.StateManagedCollection.System.Collections.IList.get_Item(Int32 index) +12 Telerik.Web.UI.ControlItemCollection.get_Item(Int32 index) +48 Telerik.Web.UI.RadComboBoxItemCollection.get_Item(Int32 index) +37 Telerik.Web.UI.RadComboBox.System.Web.UI.IPostBackEventHandler.RaisePostBackEvent(String eventArgument) +238 System.Web.UI.Page.RaisePostBackEvent(IPostBackEventHandler sourceControl, String eventArgument) +13 System.Web.UI.Page.RaisePostBackEvent(NameValueCollection postData) +175 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) +1565
We're having a problem accessing context and toolbar menus in the Editor using Firefox when the browser page has been scrolled. No problem with IE.
I'll include a link to a short video demonstrating the problem. You'll see that once the browser has been scrolled, the context and toolbar menus appear in different positions, and clicking an item on the menu has no effect; the menu disappears on mousedown. Once the browser page is scrolled back to the default position, the menus become functional again.
The problem seems to have manifest after upgrading the site to .NET 4.0.
The version of Telerik.Web.UI.dll is 2009.2.701.20. I realize this is not the current version of the editor and upgrading is in our near future, however, this problem has to be resolved immediately. Any help would be appreciated.
