<telerik:RadAsyncUpload ID="FileUpload1" runat="server" Skin="Forest" Width="272px"></telerik:RadAsyncUpload><asp:Button ID="btnUpload" Width="180px" Height="30px" runat="server" Text="Upload" onclick="btnUpload_Click" /><telerik:AjaxSetting AjaxControlID="btnUpload"> <UpdatedControls> <telerik:AjaxUpdatedControl ControlID="btnUpload" LoadingPanelID="RadAjaxLoadingPanel1"></telerik:AjaxUpdatedControl> <telerik:AjaxUpdatedControl ControlID="FileUpload1" LoadingPanelID="RadAjaxLoadingPanel1"></telerik:AjaxUpdatedControl> <telerik:AjaxUpdatedControl ControlID="lblMessage" LoadingPanelID="RadAjaxLoadingPanel1"></telerik:AjaxUpdatedControl> </UpdatedControls></telerik:AjaxSetting>
<telerik:RadAjaxLoadingPanel ID="RadAjaxLoadingPanel1" runat="server">
</telerik:RadAjaxLoadingPanel>
Uncaught TypeError: Cannot read property 'id' of undefined and chrome gives more info like Uncaught TypeError: Cannot read property 'id' of undefined Telerik.Web.UI.WebResource.axd:2889Telerik.Web.UI.RadAjaxControl._initializeRequest Telerik.Web.UI.WebResource.axd:2889H.z.callBaseMethod Telerik.Web.UI.WebResource.axd:3Telerik.Web.UI.RadAjaxManager._initializeRequest Telerik.Web.UI.WebResource.axd:3463(anonymous function) Telerik.Web.UI.WebResource.axd:3(anonymous function) Telerik.Web.UI.WebResource.axd:3H.w.raiseEvent Telerik.Web.UI.WebResource.axd:3e._onFormSubmit Telerik.Web.UI.WebResource.axd:9e._doPostBack Telerik.Web.UI.WebResource.axd:9(anonymous function) Telerik.Web.UI.WebResource.axd:3onclickHi,
I followed instructions from here http://docs.telerik.com/devtools/aspnet-ajax/controls/window/how-to/how-to-use-radwindow-with-ajax to build updatepanel into a RadWindow ContentTemplate.
When I use <embed> or <object> tags in the ContentTemplate the AJAX breaks and switches to full postbacks.
Seems obvious as object and embed tags create their own DOMs...anyone aware of a solution to workaround this? Sorry for the offtopic.
Marc
Hello,
I'm using the below code to setup a grid. The columns don't stay frozen when I am using the keyboard to navigate the grid.
<ClientSettings AllowKeyboardNavigation="true" >
<Selecting AllowRowSelect="false" EnableDragToSelectRows="false" CellSelectionMode="SingleCell" />
<Scrolling UseStaticHeaders="false" AllowScroll="true" ScrollHeight="100%" FrozenColumnsCount="5"
EnableColumnClientFreeze="true" SaveScrollPosition="true" />
<KeyboardNavigationSettings AllowSubmitOnEnter="true" EnableKeyboardShortcuts="true" SaveChangesKey="S" />
Any help on this would be much appreciated.
Hi,
When I export my grid to an excel file (ExcelML), I need to hide some column in this excel file (same as when you hide a column in excel). How can I do that?
Thx.
I am using a RadGrid in Batch Edit mode.
When RenderMode is set to "Classic" (or not set at all), I can see the dirty indicators for changed cells.
When RenderMode is set to "Lightweight", I no longer see the dirty indicators.
Is this expected behavior? Or should I be able to see dirty indicators in Lightweight mode for a Batch Edit RadGrid?

Hello everybody,
I know that this error has a lot of documentation on the forum/documentation but not any of the given solutions has worked for me...
I have a website that uses telerik, everything works fine but when I try to deploy it on an Integrated IIS 8.5, I have the following error on my page :
The assembly is copied into the bin folder but doesn't seems to be loaded
http://www.telerik.com/blogs/web-resources-demystified-part-3-troubleshooting
I don't see any failed request...
I added the following line to the system.webserver in web.config in addition with the ones given there : http://docs.telerik.com/devtools/aspnet-ajax/general-information/web-config-settings-overview
<handlers> <add name="Telerik.Web.UI.WebResource" path="Telerik.Web.UI.WebResource.axd" verb="*" type="Telerik.Web.UI.WebResource" /></handlers>But the problem persists...
I have no clue on how to resolve this issue
THank you for your support,
Bests regards, Nicolas.
The Rotator is displaying 4 buttons... Up, Down, Left, Right.
How can I hide, Up and Down?
Thanks.
JC
I amusing this technique to set an edit link in a grid template column.
editlink.Attributes.Add("href", "#");
editlink.Attributes.Add("onclick", string.Format("return ShowEditForm('{0}','{1}');", e.Item.OwnerTableView.DataKeyValues[e.Item.ItemIndex]["SubscriberID"], e.Item.ItemIndex));
In the past, I have called a telerik window with a separate aspx page that would display the detail record data for the ID that was passed in the querystring.
I am now working with bootstrap and would like to do this with a bootstrap modal.
Are there any examples where this has been done?