I have a strange condition where I have a telerik:RadEditor in a popup, when I use the spell check it causes a stack overflow at line 0 after it is done.
This problem only happens in IE 8.
I have a page with a RadFileExplorer with EnableAsyncUpload to true.
When I drag and drop a document and upload this document I get to following error : Unable to get property 'add_folderLoaded' of undefined or null reference.
My page :
<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="FileExplorerWithoutHomePage.aspx.cs" Inherits="FileExplorerWithoutHomePage" %>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<%@ Register TagPrefix="asp" Namespace="AjaxControlToolkit" Assembly="AjaxControlToolkit"%>
<
html
xmlns
=
"http://www.w3.org/1999/xhtml"
>
<
head
runat
=
"server"
>
<
title
></
title
>
<
meta
content
=
"C#"
name
=
"CODE_LANGUAGE"
/>
<
meta
http-equiv
=
"X-UA-Compatible"
content
=
"IE=edgde,chrome=1"
/>
</
head
>
<
body
>
<
form
id
=
"form1"
runat
=
"server"
method
=
"post"
>
<
asp:ToolkitScriptManager
ID
=
"ToolkitScriptManager1"
runat
=
"server"
></
asp:ToolkitScriptManager
>
<
telerik:RadFileExplorer
runat
=
"server"
ID
=
"FileExplorer1"
Width
=
"520px"
Height
=
"500px"
AllowPaging
=
"true"
PageSize
=
"10"
ExplorerMode
=
"FileTree"
>
<
Configuration
EnableAsyncUpload
=
"true"
></
Configuration
>
</
telerik:RadFileExplorer
>
</
form
>
</
body
>
</
html
>
The folders are set in code behind :
protected void Page_Load(object sender, EventArgs e)
{
if (!Page.IsPostBack)
{
String FolderRoot = @"~/DataFolder/ITServiceTickets/1142957/";
string[] Paths = new string[]
{
@FolderRoot
};
FileExplorer1.Configuration.ViewPaths = Paths;
FileExplorer1.Configuration.UploadPaths = Paths;
FileExplorer1.Configuration.DeletePaths = Paths;
}
}
What is the problem?
Kind regards
Suzy
I am using custom filter in my radgrid. I am creating the filter column like this:
FilterColumn : GridBoundColumn
{
//othercode
_filterCombo = new RadComboBox()
{
ID = "filterCombobox" + this.UniqueName,
OnClientItemsRequested = "OnClientItemsRequestedHandler",
OnClientDropDownOpening = "OnClientItemsRequestedHandler",
//other code
}
_filterCombo.SelectedIndexChanged += filterCombo_SelectedIndexChanged;
_filterCombo.ItemsRequested += filterCombo_ItemsRequested;
//othercode
}
When the column name contain special characters like $,& ] etc the filter does not work.
I have noticed that in this case neither OnClientDropDownOpening nor ItemsRequested event fires.
I have tried the solution in the thread http://www.telerik.com/forums/grid-mastertableview-filterexpression-is-blank-on-special-chars-like-quot-lt-gt-is-passed-from-google-like-filtering. but this is not working.
I am still not able to filter even after making the changes mentioned in the above thread.
Also when my column name contains "> (e.g te">stcolumn ), than the grid fails to show the combobox. Instead it shows html and textboxes.
It correctly shows the combobox if I htmlencode the above column name but filtering still does not work even after setting IllegalStrings and EnableLinqExpressions in page_load event.
GridFilterFunction.IllegalStrings = new string[] { " LIKE ", " AND ", " OR ", " NULL ", " IS " };
rg_Report.EnableLinqExpressions = true;
My telerik.UI version is 2014.
Here is my test page:
<
html
xmlns
=
"http://www.w3.org/1999/xhtml"
>
<
head
runat
=
"server"
>
<
title
>Now</
title
>
<
script
runat
=
server
type
=
"text/C#"
>
public void Submit_Click(object sender,System.EventArgs eventArgs)
{
this.Title = System.DateTime.Now.ToString();
}
</
script
>
</
head
>
<
body
>
<
form
runat
=
"server"
>
<
Telerik:RadScriptManager
runat
=
server
/>
<
Telerik:RadAjaxManager
runat
=
server
EnablePageHeadUpdate
=
false
>
<
AjaxSettings
>
<
Telerik:AjaxSetting
AjaxControlID
=
Submit
>
<
UpdatedControls
>
<
Telerik:AjaxUpdatedControl
ControlID
=
Submit
/>
</
UpdatedControls
>
</
Telerik:AjaxSetting
>
</
AjaxSettings
>
</
Telerik:RadAjaxManager
>
<
asp:Button
runat
=
server
ID
=
Submit
OnClick
=
Submit_Click
/>
</
form
>
</
body
>
</
html
>
Even if the "EnablePageHeadUpdate" is set to false, the title of the page still change after clicking the button.
Unfortunately, 2015 Q2 broke our application's RadGrid Persistence behavior. Calling LoadState() in the Persistence Framework breaks and never returns (100% cpu). The same broken behavior can also be seen on Telerik's Demo for this:
http://demos.telerik.com/aspnet-ajax/controls/examples/integration/persisting-grid-settings/defaultcs.aspx?product=grid
Note that you cannot Save and Load properly and the AJAX call will never return when clicking Load. This is the same behavior we are experiencing in our application after upgrading to 2015.2.623.45
Hello,
I have an element on a GroupHeaderTemplate and i want to bind a value on this element (button).
How can i make this ?
Thanks for your support,
Alexandre
Hello Telerik Community!
I am looking to customize the labels of time column. For instance, I would like to have radscheduler display "9h - 10h" instead of "09:00".
How could I potentially succeed into this?
Best,
David
Hi,
Is it at all possible to set the media source of the RadMediaPlayer to a MemoryStream?
I am storing voice recordings in our database as a byte[] and then reading them back into our webapp. I want to avoid writing the byte[] to a file and then re-reading it just to play it back.
Any help would be appreciated.
Thanks