Telerik Forums
UI for ASP.NET AJAX Forum
4 answers
72 views

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. 

  

 

Ianko
Telerik team
 answered on 06 Jul 2015
5 answers
133 views

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"%>
 
<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

 

 

Vessy
Telerik team
 answered on 06 Jul 2015
1 answer
705 views

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.

Eyup
Telerik team
 answered on 06 Jul 2015
6 answers
305 views
Hi,
I increased the RadSearchBox Text Size using CSS but the dropdown list text font size is still small. I want to increase that. How can I do that ?
Nencho
Telerik team
 answered on 06 Jul 2015
2 answers
182 views
I have a RadGrid built on lines of the demo - http://demos.telerik.com/aspnet-ajax/grid/examples/groupby/outlookstyle/defaultcs.aspx 
Grouping and ungrouping works when I drag and drop, but I am not able to see the column being dragged when I attempt to drag a column to and from the GroupPanel. 

Here are the relevant settings on my grid -

<telerik:RadGrid ID="MyGrid" OnItemCreated="MyGrid_ItemCreated"  Skin="MySkin" EnableEmbeddedSkins="false" GridLines="None"  
                                                OnNeedDataSource="MyGrid_NeedDataSource"  OnItemEvent="BudgetedChargesGrid_ItemEvent" OnItemDataBound="MyGrid_ItemDataBound"  
                                                 AllowMultiRowSelection="true" AllowMultiRowEdit="true" HorizontalAlign="Center" ShowStatusBar="false" AutoGenerateColumns="false" runat="server"
                                                 GroupingEnabled="true" ShowGroupPanel="true" ShowFooter="true"  EnableViewState="true" OnGroupsChanging="GroupsChanging" >
                                                <ClientSettings AllowColumnsReorder="false" AllowDragToGroup="true">
                                                    <Scrolling AllowScroll="True" UseStaticHeaders="true" ScrollHeight="200px" />
                                                     <Selecting AllowRowSelect="true" UseClientSelectColumnOnly="false" EnableDragToSelectRows="false" />                          
                                                     <Resizing  AllowColumnResize="false" ClipCellContentOnResize="false" />
                                                     <ClientEvents OnGridCreated="AnaquaGrid_GridCreated" />
                                                </ClientSettings>
                                                <PagerStyle Mode="NextPrevNumericAndAdvanced" AlwaysVisible="true" />
                                                <GroupingSettings RetainGroupFootersVisibility="true" ShowUnGroupButton="true"  />
                                                <MasterTableView DataKeyNames="InvoiceBudgetId" Width="100%" ShowGroupFooter="true"  FooterStyle-CssClass="smallText strong"  GroupHeaderItemStyle-CssClass="smallText strong"  ItemStyle-VerticalAlign="Top"
                                                 AlternatingItemStyle-VerticalAlign="Top" HeaderStyle-VerticalAlign="Top" HeaderStyle-HorizontalAlign="Left"
                                                CommandItemDisplay="None" Dir="LTR"  CurrentResetPageIndexAction="SetPageIndexToFirst" TableLayout="Auto" HierarchyLoadMode="Client" 
                                                EnableColumnsViewState="false" EditMode="InPlace" AllowNaturalSort="false" AllowCustomSorting="true" AllowPaging="true" AllowSorting="true" AllowCustomPaging="true" >
  <SortExpressions>                                                  
                                                </SortExpressions>
                                                   <Columns>
<!-- I have GridBound and GridTemplate Columns here--!>
  </Columns>                                           
                                                </MasterTableView>
                                            </telerik:RadGrid>

Is there a setting to turn this on or is this built in with the grouping functionality? If latter, what is suppressing that functionality for me?
Thanks,
NP
Raffee
Top achievements
Rank 1
 answered on 06 Jul 2015
1 answer
417 views

Here is my test page:

 

<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.

Maria Ilieva
Telerik team
 answered on 06 Jul 2015
3 answers
68 views

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

Daniel
Telerik team
 answered on 06 Jul 2015
1 answer
75 views

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

Eyup
Telerik team
 answered on 06 Jul 2015
1 answer
83 views

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

Nencho
Telerik team
 answered on 06 Jul 2015
2 answers
410 views

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

Eyup
Telerik team
 answered on 06 Jul 2015
Narrow your results
Selected tags
Tags
+? more
Top users last month
Ambisoft
Top achievements
Rank 2
Iron
Pascal
Top achievements
Rank 2
Iron
Matthew
Top achievements
Rank 1
Sergii
Top achievements
Rank 1
Iron
Iron
Andrey
Top achievements
Rank 1
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Ambisoft
Top achievements
Rank 2
Iron
Pascal
Top achievements
Rank 2
Iron
Matthew
Top achievements
Rank 1
Sergii
Top achievements
Rank 1
Iron
Iron
Andrey
Top achievements
Rank 1
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?