I have a radcombobox inside an update panel and it works fine in every other broswer but Edge. I get the following JS exception in Edge when I debug with f12:
"Sys.ScriptLoadFailedException: The script http://xxx/ScriptResource.axd?d=qZWov62bqH1pGSd7D0rQx-DbXZR3u-bcTkEoFKSoahBoB3Yrh_wCaeTQapIJW9FNJ_Rl8OfON8PhrH6dyNfuKmqiz44SDKOLCQx07DwbU6nWm-KML3wF4LeAKJ8k50XKUYKv8MnFUudJMiYa0&t=ffffffffe8b7bf5c'
failed to load. Check for:
 Inaccessible path.
 Script errors. (IE) Enable 'Display a notification about every script error' under advanced settings.
 Missing call to Sys.Application.notifyScriptLoaded().
When I open the script file in a text editor and navigate to the line the debugger says is causing the issue it's this line:
c.RadComboBox.prototype._updateComboBoxText=function(){if(!this._checkBoxes){return;
When it reaches this point it crashes and the combobox doesn't work at all. Again this works in every other browser.

Basically, I'm trying to split uploaded files into 4meg chunks and write them out. However, I'm getting an error and can't figure out why.
The file being uploaded is 65meg.
Below is my source code.  It creates the first Chunk fine.  It then loops around, and when it starts the second Chunk, it blows up with this error message:
"Offset and length were out of bounds for the array or count is greater than the number of elements from index to the end of the source collection."
The line of code that is the offender is inside the Else statement and is:
                        streamFile.Read(chunk, index, intChunkLength);
index is 4194304 bytes (4,194,304)
intChunkLength is also 4194304 bytes (4,194,304)
streamFile.ContentLength is 95724958 (95,724,958)
Now, the way I understand it (Which could be wrong) is that streamFile should be reading the uploaded file starting at the 4194304 byte, and reading in an additional 4194304 bytes.   That would be 8,388,608 bytes in.   That is well within the 95,724,958 bytes that was uploaded.   So why am I getting this error?  Maybe I don't understand the way InputStream is supposed to work.  
        protected void RadAsyncUpload1_FileUploaded(object sender, Telerik.Web.UI.FileUploadedEventArgs args)        {            // This is an experiment to break up a file into chunks.  From here down.            foreach (UploadedFile file in RadAsyncUpload1.UploadedFiles)            {                byte[] bytes = new byte[file.ContentLength];                byte[] chunk = new byte[1024 * 1024 * 4];                int intChunkLength = chunk.Length;                int count = 1;                int index = 0;                using (var streamFile = file.InputStream)                {                    while (index <= bytes.Length)                {                    if (index + chunk.Length > (bytes.Length))                    {                        // Remainder                        int intChunkUsedSoFar = (count - 1) * chunk.Length;                        int intRemainder = index - intChunkUsedSoFar;                        chunk = new byte[chunk.Length];
                        streamFile.Read(chunk, index, intRemainder);                                             }                    else                    {                        // Full size                        chunk = new byte[intChunkLength];                        streamFile.Read(chunk, index, intChunkLength);                    }                    File.WriteAllBytes("c:\\chunks\\chunk" + count.ToString() + ".ary", chunk);                                         count = count + 1;                    index += chunk.Length;                }            }}}
I am attempting to utilize the following demo to create two RadGrids that allow me to drag and drop elements between them. When I drag from one grid to the second it fires the onrowdrop function but doesn't actually drop the row item into the second grid.
Grid - Items Drag-and-drop
any help would be great
<%@ Page Title="" Language="VB" MasterPageFile="~/Masters/SetupMaintenance.master" AutoEventWireup="false" CodeFile="WebsiteMenuMaintenance.aspx.vb" Inherits="WebsiteMenuMaintenance" %><%@ Register Assembly="Telerik.Web.UI" Namespace="Telerik.Web.UI" TagPrefix="telerik" %><%@ Register Src="~/UserControls/CampaignSelection.ascx" TagPrefix="uc1" TagName="CampaignSelection" %><asp:Content ID="Content1" ContentPlaceHolderID="ContentHeader" runat="Server"></asp:Content><asp:Content ID="Content2" ContentPlaceHolderID="ContentMain" runat="Server">    <asp:HiddenField ID="hiddenCampaign_Key" runat="server" />    <asp:HiddenField ID="CampaignCategoryHeader_Id" runat="server" />    <asp:HiddenField ID="HiddenCampaignCategoryHeaderDetail_Id" runat="server" />    <input id="hiddenMenu_Id" type="hidden" name="hiddenMenu_Id" runat="server" />    <input id="hiddenMenu_Key" type="hidden" name="hiddenMenu_Key" runat="server" />    <input id="hiddenMenuDetailParent_Key" type="hidden" name="hiddenMenuDetailParent_Key" runat="server" />    <input id="hiddenMenuDetail_Id" type="hidden" name="hiddenMenuDetail_Id" runat="server" />    <input id="hiddenMenuDetail_Key" type="hidden" name="hiddenMenuDetail_Key" runat="server" />    <asp:Label runat="server" ID="lblError" />    <uc1:CampaignSelection runat="server" ID="CampaignSelection" InlcudeAllCampaignsChoice="True" />    <div class="row">        <div class="col-md-6">            <h3>Current Menus</h3>        </div>        <div class="col-md-6 text-right">            <h3>                <asp:LinkButton ID="lnkNewMenu" runat="server" ToolTip="Add a New Menu" CssClass="iconAction"><i class="glyphicon glyphicon-plus"></i> Add</asp:LinkButton></h3>        </div>    </div>    <%--<div class="row">        <div class="col-md-2">            <div id="Templates">                <telerik:radgrid ID="radMenuTree" runat="server" ShowLineImages="false" Width="100%" Style="white-space: normal;">                </telerik:radgrid>            </div>        </div>        </div>        <div class="col-md-10">            <div id="EditMenu">                <div class="row">                    <div class="col-md-6">                        <h3>Menu Option</h3>                    </div>                    <div class="col-md-6 text-right">                        <h3>                            <asp:LinkButton ID="lnkSave" runat="server" CssClass="lnkSave" CommandName="SaveHTML" OnClientClick="SaveHTMLCONTENT()"><i class="glyphicon glyphicon-save"></i>Save</asp:LinkButton></h3>                    </div>                </div>--%>                                                               <telerik:RadSkinManager runat="server" id="RadSkinManager1" showChooser="false" />                        <script type="text/javascript">                            ; (function ($, undefined) {                                var grdAvailableMenus;                                var grdMainMenus;                                //var demo = window.demo = {};                                                                onGridCreated = function (sender, args) {                                                                                                       grdAvailableMenus = $telerik.findControl(document, "grdAvailableMenus");                                    grdAvailableMenus = sender;                                                                     }                                onRowDropping = function (sender, args) {                                    alert("Row Dropping")                                    alert(sender.get_id)                                    console.log(sender);                                    //if (sender.get_id() == grdAvailableMenus.get_id()) {                                    var node = args.get_destinationHtmlElement();                                        if (!isChildOf(grdMainMenus.get_id(), node) && !isChildOf(grdAvailableMenus.get_id(), node)) {                                            //args.set_cancel(true);                                            alert(grdAvailableMenus)                                                                                                                               }                                   // }                                    else {                                        var node = args.get_destinationHtmlElement();                                        alert(node)                                        if (!isChildOf('trashCan', node)) {                                            args.set_cancel(true);                                        }                                        else {                                            if (confirm("Are you sure you want to delete this menu?"))                                                args.set_destinationHtmlElement($get('trashCan'));                                            else                                                args.set_cancel(true);                                        }                                    }                                };                                function isChildOf(parentId, element) {                                    while (element) {                                        if (element.id && element.id.indexOf(parentId) > -1) {                                            return true;                                        }                                        element = element.parentNode;                                    }                                    return false;                                };                            })($telerik.$);                        </script>                        <telerik:RadFormDecorator RenderMode="Lightweight" ID="RadFormDecorator1" DecorationZoneID="msgTop" DecoratedControls="CheckBoxes, Label" runat="server" Skin="Silk" EnableRoundeCorners="True" />                        <telerik:RadAjaxLoadingPanel ID="RadAjaxLoadingPanel1" runat="server"></telerik:RadAjaxLoadingPanel>                        <telerik:RadAjaxManager runat="server" id="RadAjax" DefaultLoadingPanelID="RadAjaxLoadingPanek1">                            <AjaxSettings>                                <telerik:AjaxSetting AjaxControlID="grdAvailableMenus">                                    <UpdatedControls>                                        <telerik:AjaxUpdatedControl ControlID="grdAvailableMenus" />                                        <Telerik:AjaxUpdatedControl ControlID="grdMainMenus" />                                        <telerik:AjaxUpdatedControl ControlID="msg" />                                                                                                                   </UpdatedControls>                                </telerik:AjaxSetting>                                <telerik:AjaxSetting AjaxControlID="grdMainMenus" >                                    <UpdatedControls>                                        <telerik:AjaxUpdatedControl ControlID="grdMainMenus" />                                        <telerik:AjaxUpdatedControl ControlID="msg" />                                    </UpdatedControls>                                </telerik:AjaxSetting>                                <telerik:AjaxSetting AjaxControlID="UseDragColumnCheckBox">                                    <UpdatedControls>                                        <telerik:AjaxUpdatedControl ControlID="grdAvailableMenus" />                                        <telerik:AjaxUpdatedControl ControlID="grdMainMenus" />                                    </UpdatedControls>                                </telerik:AjaxSetting>                            </AjaxSettings>                        </telerik:RadAjaxManager>                <div class="row">                    <div class="col-md-12">                        <telerik:RadGrid Rendermode="Lightweight" runat="server" ID="grdAvailableMenus" Skin="Silk" OnNeedDataSource="grdAvailableMenus_NeedDataSource" AllowPaging="true"                             OnRowDrop="grdAvailableMenus_RowDrop" AutoGenerateColumns="false" AllowMultiRowSelection="true" PageSize="15">                            <MasterTableView AllowMultiColumnSorting="True" DataKeyNames="Menu_Id">                                    <Columns>                                        <telerik:GridDragDropColumn HeaderStyle-Width="18px">                                        </telerik:GridDragDropColumn>                                        <telerik:GridTemplateColumn SortExpression="" Visible="false" HeaderText="Action" ItemStyle-HorizontalAlign="Left"                                            ItemStyle-Width="70px" HeaderStyle-Width="70px">                                            <ItemTemplate>                                                <asp:ImageButton ID="btnUpdate" runat="server" Visible="false" CommandName="UpdateMenuStage" ImageUrl="images/pencil.gif"                                                    CommandArgument='<%# Eval("Menu_Id") %>'                                                    CausesValidation="false" ToolTip="Update Menu Stage" OnClientClick="SetMenuStageMode();" />                                          <asp:ImageButton ID="btnDelete" runat="server" Visible="false" CommandName="DeleteMenuStage" ImageUrl="Images/delete.gif"                                            CommandArgument='<%# Eval("Menu_Id") %>'                                            CausesValidation='false' ToolTip="Delete Menu Stage" />                                            </ItemTemplate>                                        </telerik:GridTemplateColumn>                                        <telerik:GridTemplateColumn Visible="True" SortExpression="MenuName" HeaderText="Menu Name">                                            <ItemTemplate>                                               <asp:Label ID="lblMenu_Stage_Id" runat="server" Text='<%# DataBinder.Eval(Container.DataItem, "Menu_Name") %>' />                                            </ItemTemplate>                                        </telerik:GridTemplateColumn>                                                                                                                                                                 </Columns>                                </MasterTableView>                                                             <ClientSettings AllowRowsDragDrop="true" AllowColumnsReorder="true" ReorderColumnsOnClient="false">                                                                        <ClientEvents OnRowDropping="onRowDropping" />                                                                      <Scrolling AllowScroll="True" UseStaticHeaders="false" SaveScrollPosition="True"></Scrolling>                                    <Selecting AllowRowSelect="True" EnableDragToSelectRows="false" />                                </ClientSettings>                            </telerik:RadGrid>                        <div class="demo-container" style="width: 750px;">        <div class="exWrap">            <div class="msgTop" id="msgTop">                <asp:CheckBox ID="UseDragColumnCheckBox" Checked="true" Visible="false" runat="server" OnCheckedChanged="UseDragColumnCheckBox_CheckedChanged"                    AutoPostBack="true" Text="Use DragDropColumn"></asp:CheckBox>            </div>                       <telerik:RadGrid RenderMode="Lightweight" runat="server" AllowPaging="True"  Skin="Silk"  ID="grdMainMenus" OnNeedDataSource="grdMainMenus_NeedDataSource"                    Width="350px" AutoGenerateColumns="false"  AllowMultiRowSelection="true" OnRowDrop="grdMainMenus_RowDrop">                    <MasterTableView DataKeyNames="Menu_Id" Width="100%">                        <Columns>                            <telerik:GridDragDropColumn HeaderStyle-Width="18px" Visible="true">                                                           </telerik:GridDragDropColumn>                            <telerik:GridTemplateColumn Visible="True" SortExpression="MenuName" HeaderText="">                             </telerik:GridTemplateColumn>                                       <telerik:GridTemplateColumn Visible="True" SortExpression="MenuName" HeaderText="Menu Name">                                            <ItemTemplate>                                           <asp:Label ID="lblMenu_Stage_Id" runat="server" Text='<%# DataBinder.Eval(Container.DataItem, "Menu_Name") %>' />                                            </ItemTemplate>                                        </telerik:GridTemplateColumn>                                                                         </Columns>                        <NoRecordsTemplate>                            <div style="height: 30px; cursor: pointer;">                                No items to view                            </div>                        </NoRecordsTemplate>                        <PagerStyle Mode="NumericPages" PageButtonCount="4"></PagerStyle>                    </MasterTableView>                    <ClientSettings AllowRowsDragDrop="True">                        <Selecting AllowRowSelect="True" EnableDragToSelectRows="false"></Selecting>                       <ClientEvents OnRowDropping="onRowDropping" OnGridCreated="onGridCreated"></ClientEvents>                    </ClientSettings>                </telerik:RadGrid>               </div></div></div>                                                                 </div>                    </div>                </div>               </asp:Content><ASP:Content ID = "Content4" ContentPlaceHolderID="ContentFooter" runat="Server">    <input id = "hiddenVisible" type="hidden" name="hiddenVisible" Class="hiddenVisible" runat="server" value="up" />    <Telerik:RadCodeBlock ID = "RadCodeBlock1" runat="server">        <Script type = "text/javascript" language="javascript">            'use strict';            $(document).ready(function () {            });        </script>    </telerik:RadCodeBlock>    <ASP:GridView ID = "ControlGrid" runat="server" BackColor="White" CellPadding="2" CellSpacing="1"        GridLines="None" AutoGenerateColumns="False" Visible="False">        </asp:GridView></asp:Content>
Did anyone else miss the October 25th Webinar? I reserved a seat but have not gotten anything beyond the "you reserved a seat" message. Everything I have indicates it should have taken place 1 hour ago but I have not gotten any URL to connect to or any login information.
Hopefully we can see the replay later???
We have multiple applications that are separate but related.
Each application has multiple instances of controls that we would like to persist the state for in SQL.
When storing this is it just using the control ID to uniquely identify the settings for that particular control?
Essentially, do I need to worry about naming collisions across applications and store a separate record for each application?
Obviously this will inform the table schema and the implementation of the provider that are needed.
I have a RadFilter and select the function "equals" and the text "Peru" and when I press the Apply button, no results found. But radgrid column exists in the text column country "Perú" with accent, I tried putting the property: <GroupingSettings CaseSensitive = "false"> </ GroupingSettings>, but only ignores case sensitive, I need to omit the accents.
Attached image.
Please any advice?
PDT:
In basic search I succeeded with SP where the condition COLLATE establish Latin1_General_CI_AI, I need to achieve the same result with RadFilter.
Attached image: Search Search basic.png and basic sp.png​
Hello,
I am trying to export the OrgChart to pdf, I have followed the tips in previous posts, my chart contains Arabic characters which printed wrongly or not printed at all in pdf like in attachments.
any Idea how to solve this please?
Thanks
In a loop, I Can update the status for every record. So i need to show the status of record after the every single record updated. These should done when the button is clicked.
When i click start button it should updated the every record status in loop. Then i need to show every record status for every updates in UI.
protected void btnstart_Click(object sender, EventArgs e)    {        string pageId = string.Empty;        divMsg.Style.Add("display", "none");        divMsg.Attributes.Add("class", "");        try        {            DataSet DsPages = (DataSet)ViewState["SitePages"];            bool IsSucess = false, IsError = false;            string SqlQuery = string.Empty;            if (DsPages.Tables[0].Rows.Count > 0)            {                for (int i = 0; i < DsPages.Tables[0].Rows.Count; i++)                {                    try                    {                        htmlClean(DsPages.Tables[0].Rows[i]["contents"].ToString());                        pageId = DsPages.Tables[0].Rows[i]["ID"].ToString();                        SqlQuery = TransformXMLToHTML(htmldesign.InnerText, txtPageTypeXslt.InnerText.Trim());                        SqlQuery = SqlQuery.Replace("<?xml version=\"1.0\" encoding=\"utf-16\"?>", "");                        PagesBL objPage = new PagesBL(1);                        if (!string.IsNullOrEmpty(SqlQuery))                        {                            if (objPage.ExecuteQuery(SqlQuery) > 0)                            {                                PagesBL objPageBL = new PagesBL();                                objPageBL.UpdateLastExtract(DateTime.Now.ToString("yyyy/MM/dd hh:mm:ss"), DsPages.Tables[0].Rows[i]["ID"].ToString());                                                                IsSucess = true;                            }                        }                    }                    catch (Exception ex)                    {                        IsError = true;                        string Error = ex.Message;                        PagesBL objPageBL = new PagesBL();                        Errors objErr = new Errors();                        objErr.PageID = pageId;                        objErr.ErrorOccuredOn = DateTime.Now;                        objErr.ErrorText = ex.Message;                        objErr.SQLError = ex.Source == ".Net SqlClient Data Provider" ? SqlQuery : ex.Message;                        objErr.ErrorStatus = 1; //1=                        objPageBL.InsertErrors(objErr);                        // divMsg.Attributes.Add("class", "alert alert-danger");                        // divMsg.InnerText = "Extract process complete with few error.Please check the error list";                    }                }                if (IsSucess && !IsError)                {                    Session["Complete"] = "True";                    divMsg.Style.Add("display", "block");                    divMsg.Attributes.Add("class", "alert alert-success");                    divMsg.InnerText = "Extract process completed.";                }            }        }        catch (Exception ex)        {        }}Hi,
I'm working on a legacy ASP.NET WebForms project and I am to add accessibility to the project.
My predecessor already tried to add accessibility by manually assigning an access key to the AccessKey property of some of the PanelBar's RadPanelItemCollection elements (see attachment #1).

Hello,
I am using a RadGrid with multiple columns which can be edited (BatchEdit like excel).
<telerik:RadGrid RenderMode="Lightweight" ID="RadGrid1" runat="server" AutoGenerateColumns="False"GridLines="Both"OnNeedDataSource="RadGrid1_NeedDataSource" AllowAutomaticInserts="True" AllowAutomaticUpdates="True"AllowAutomaticDeletes="True">            <ItemStyle Wrap="false" />            <MasterTableView TableLayout="Fixed" NoMasterRecordsText="" ShowFooter="true" EditMode="Batch">                ...            </MasterTableView></telerik:RadGrid>
Datasource of RadGrid is ObjectDataSource
<asp:ObjectDataSource ID="TestSource" runat="server" TypeName="TestClass" SelectMethod="GetAllItems">      <UpdateParameters>                <asp:Parameter Name="Name" Type="String" />                <asp:Parameter Name="LastName" Type="String" />                <asp:Parameter Name="BirthData" Type="DateTime" />      </UpdateParameters></asp:ObjectDataSource>
On OnNeedDataSource event I'm setting Id of ObjectDataSource to RadGrid.DataSourceId.
protected void RadGrid1_NeedDataSource(object sender, GridNeedDataSourceEventArgs e){        RadGrid1.DataSourceID = "TestSource";}
In current Page I have also button "Send email" send rad gird inserted values.
<asp:Button ID="SendEmail" OnClick="SendEmail_Click" Text="Send" runat="server" />
Problem is that on SendEmail_Click DataSource is null. But I want to get newly changed DataSource.
protected void SendEmail_Click(object sender, EventArgs e){        RadGrid1.Rebind();        // RadGrid1.Datasource is null}
How I can solve this problem?
Thanks,
Daler