protected void loadComboBox() { try { Random rdCombo = new Random(); this.ComboTest.Items.Clear(); this.ComboTest.Items.Insert(0, new Telerik.Web.UI.RadComboBoxItem("", "")); for(int i = 0; i < 120; i++) { this.ComboTest.Items.Insert((i + 1), new Telerik.Web.UI.RadComboBoxItem("000" + rdCombo.Next(120) + " - " + "Descrizione " + (i + 1), Convert.ToString((i + 1)))); } this.ComboTest.Filter = Telerik.Web.UI.RadComboBoxFilter.Contains; this.ComboTest.Sort = Telerik.Web.UI.RadComboBoxSort.Ascending; } catch(Exception ex) { throw ex; } }I am testing the RadDock control out for my company. Are there any demos in which the control is not "ajaxafied". I am incorporating the control into a legacy system having a requirement that all commands use the postback model without any ajax ability. The reason being is we have <xhtmlConformance mode="Legacy" /> in the web.config , This kills the pagerequestmanager, if there is a work around having this on that would be great, but I havent found one yet. So, I guess I need one of two things
ONE
RadDock which doesnt require the radscript manager using a postback model instead of an AJAX model
OR
TWO
A work around for having the xhtmlConfromance mode set to legacy.

I have a problem editing a HTML form with Telerik Editor using Google Chrome. When I add a button, I can not edit the properties of the button and if I add a submit button, when I click the submit button into the editor (design view) the form is submitted.
Is there a fix for this error ?
To reproduce this strange behavior, simply open the demo editor with Chrome.
http://demos.telerik.com/aspnet-ajax/editor/examples/overview/defaultcs.aspx
and add these lines of html code to the bottom of the page (or use the editor tools to add the buttons).
<input style="width: 50px; height: 22px;" type="button" value="Execute" /><br />
<input style="width: 50px; height: 22px;" type="submit" value="Submit" /><br />
then try to click on the buttons in the design view.
Best Regards,
Massimo
void Sclient_ListRolCompleted(object sender, HzgKullaniciService.ListRolCompletedEventArgs e) { roller = e.Result.ToList<HzgKullaniciService.Kullanici_rol>(); }
<telerik:RadGrid runat="server"
ID="rgv_yetkiler"
CellSpacing="0"
Culture="tr-TR"
GridLines="None"
Skin="Metro"
AutoGenerateColumns="False"
AllowPaging="True"
AllowSorting="True"
AllowAutomaticUpdates="True"
AllowAutomaticInserts="True"
ShowStatusBar="True">
<MasterTableView ShowFooter="false" DataKeyNames="ID" EditMode="InPlace" CommandItemDisplay="TopAndBottom">
<CommandItemSettings ExportToPdfText="Export to PDF"></CommandItemSettings>
<RowIndicatorColumn Visible="True" FilterControlAltText="Filter RowIndicator column"></RowIndicatorColumn>
<ExpandCollapseColumn Visible="True" FilterControlAltText="Filter ExpandColumn column"></ExpandCollapseColumn>
<Columns>
<telerik:GridBoundColumn DataField="yetkiadi" HeaderText="Yetki Adı" HeaderStyle-Width="300px" ItemStyle-Width="300px">
<ColumnValidationSettings>
<ModelErrorMessage Text=""></ModelErrorMessage>
</ColumnValidationSettings>
<HeaderStyle Width="300px"></HeaderStyle>
<ItemStyle Width="300px"></ItemStyle>
</telerik:GridBoundColumn>
<telerik:GridTemplateColumn HeaderText="Rol" UniqueName="rol" ItemStyle-Width="240px">
<ItemTemplate>
<%#roller.Where(r=>r.ID==new System.Guid(DataBinder.Eval(Container.DataItem, "rolID").ToString())).First<HzgMainWebApp.HzgKullaniciService.Kullanici_rol>().roladi%>
</ItemTemplate>
<EditItemTemplate>
<telerik:RadDropDownList
runat="server"
ID="ddlistroller"
DataTextField="roladi"
DataValueField="ID"
SelectedValue='<%#Bind("rolID")%>'
>
</telerik:RadDropDownList>
</EditItemTemplate>
<ItemStyle Width="240px"></ItemStyle>
</telerik:GridTemplateColumn>
<telerik:GridEditCommandColumn
FooterText="EditCommand footer"
UniqueName="EditCommandColumn"
HeaderText="Düzenle" HeaderStyle-Width="100px"
CancelText="İptal"
UpdateText="Güncelle">
<HeaderStyle Width="100px"></HeaderStyle>
</telerik:GridEditCommandColumn>
</Columns>
<EditFormSettings>
<EditColumn UniqueName="EditCommandColumn1" FilterControlAltText="Filter EditCommandColumn1 column"></EditColumn>
</EditFormSettings>
<PagerStyle PageSizeControlType="RadComboBox"></PagerStyle>
</MasterTableView>
<PagerStyle PageSizeControlType="RadComboBox"></PagerStyle>
<FilterMenu EnableImageSprites="False"></FilterMenu>
</telerik:RadGrid>
<telerik:RadTreeView ID="RadTreeView1" runat="server" CheckBoxes="True" Width="100%" Height="250px"> <Nodes> <telerik:RadTreeNode Text="Personal Folders" Expanded="True"> <Nodes> <telerik:RadTreeNode Text="Deleted Items (6)"> </telerik:RadTreeNode> <telerik:RadTreeNode Text="Drafts"> </telerik:RadTreeNode> <telerik:RadTreeNode Text="Inbox (14)" Expanded="True"> </telerik:RadTreeNode> <telerik:RadTreeNode Text="Junk E-mail"> </telerik:RadTreeNode> <telerik:RadTreeNode Text="Outbox"> </telerik:RadTreeNode> <telerik:RadTreeNode Text="Sent Items"> </telerik:RadTreeNode> <telerik:RadTreeNode Text="Search Folders"> </telerik:RadTreeNode> </Nodes> </telerik:RadTreeNode> </Nodes></telerik:RadTreeView>