Telerik Forums
UI for ASP.NET AJAX Forum
3 answers
326 views
Typing in the RadEditor in Chrome always adds the <p></p> HTML tags to the first row.  I can remove the tags and then I am able to type in the first row. But I cannot do it by default. I have attached two screen shots that shows this behavior in chrome.

It works fine in IE and Firefox. Is there a way to remove the <p> tag inserted by default in Chrome browser?

I'm using version 2014.2.618.45


















�3�-h�
















�3�-h�

Ianko
Telerik team
 answered on 04 May 2015
3 answers
161 views
It's possible this should go under the RadSpell control, but...

In IE11, if the next wrong word doesn't have any suggestions, the spell check doesn't open the commands window (the one with Ignore/Ignore All/Change Manually/etc), and the spell check can't continue.  This happens in both iframe and div modes.  No errors are thrown.

Also, in IE11, when the RadEditor is set to ContentAreaMode="Div" and contained inside an iframe, clicking on the spell check commands window for the first misspelled word results in the following JavaScript error:

Object doesn't support property or method 'createTextRange'.

Screenshot attached.
Ianko
Telerik team
 answered on 04 May 2015
3 answers
159 views
Hi All,

I have a RadEditor on my ASP.NET page.
I want to get the number of lines users have entered and want to restrict users to enter more than X lines.

Is there are property of RADEditor using which I can achieve this ?

Thanks
Bharani
Top achievements
Rank 1
 answered on 03 May 2015
2 answers
216 views

Wanted to make you aware of an issue with radscheduler,24hr view and the bootstrap skin.  It seems with that skin that you are not able to vertically scroll past 10pm (11pm is entirely cut out).  You can view this yourself in either Chrome or Firefox on your own examples (didn't check IE).

 

If you are aware do you have a workaround prepared or anyone else who's encountered the same?

Jon
Top achievements
Rank 1
 answered on 01 May 2015
4 answers
310 views

I want to create a multilevel list with RadFlowDocument, like this : 

  1. level 1.

    1.1. level 1.1.

      1.1.1. level 1.1.1.

      1.1.2. level 1.1.2.

    1.2. level 1.2.

    1.3. ...

What should I write to the property NumberTextFormat?

Dim list As New Telerik.Windows.Documents.Flow.Model.Lists.List()
document.Lists.Add(list)
list.MultilevelType = Telerik.Windows.Documents.Flow.Model.Lists.MultilevelType.Multilevel

Dim i As Integer = 0
While i < list.Levels.Count
    list.Levels(i).StartIndex = 1
    list.Levels(i).NumberingStyle = Telerik.Windows.Documents.Flow.Model.Lists.NumberingStyle.Decimal
    list.Levels(i).NumberTextFormat = ??????
    i = i + 1
End While

Stéphane
Top achievements
Rank 1
 answered on 01 May 2015
5 answers
230 views
Hello,

I am having a problem with a RadEditor thats in the EditTemplate of a RadGrid that is using the Batch edit mode. All HTML tags are lost after the row loses focus.

Steps to reproduce the issue on the sample below:
1. Click one of the rows to enter edit mode
2. Add a hyperlink using the richtexteditor or make a text bold. Anything that adds one or more HTML tags.
3. Exit edit mode, by clicking a different row.
4. All HTML tags are now lost.

See the code sample below:
Markup:
<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="TestCase.aspx.cs" Inherits="Test.TestCase" %>
 
<!DOCTYPE html>
 
<head runat="server">
    <title></title>
</head>
<body>
    <form id="form1" runat="server">
    <div>
        <telerik:RadScriptManager runat="server" />
        <telerik:RadGrid ID="gvFactors"
                         runat="server"                         
                         AutoGenerateColumns="false"                           
                         AllowAutomaticInserts="true"
                         AllowAutomaticUpdates="true"   
                         AllowAutomaticDeletes="true" 
                         Skin="Metro"                     
                         OnNeedDataSource="gvFactors_OnNeedDataSource">     
            <MasterTableView TableLayout="Auto" EditMode="Batch" CommandItemDisplay="Top">
                <Columns>
                    <telerik:GridTemplateColumn UniqueName="Text" DataField="Text" ColumnEditorID="tbText">
                        <ItemTemplate>
                            <%# Eval("Text") %>
                        </ItemTemplate>
                        <EditItemTemplate>
                                <telerik:RadEditor ID="tbText"
                                                    runat="server"                         
                                                    Skin="Metro"                                                                                    
                                                    Content='<%#Eval("Text")%>'                                      
                                                    MaxHtmlLength="4000"
                                                    EditModes="Design"/>                                         
                        </EditItemTemplate>                               
                    </telerik:GridTemplateColumn>
                </Columns>               
            </MasterTableView>
        </telerik:RadGrid>      
    </div>
    </form>
</body>
</html>

Code behind:
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
 
namespace Test {
    public partial class TestCase : System.Web.UI.Page {
        protected void Page_Load(object sender, EventArgs e) {
 
        }
 
        protected void gvFactors_OnNeedDataSource(object sender, EventArgs e) {
            IList<DataItem> items = new List<DataItem>();
            items.Add(new DataItem() { Text = "test1" });
            items.Add(new DataItem() { Text = "test2" });
            items.Add(new DataItem() { Text = "test3" });
 
            this.gvFactors.DataSource = items;
        }
    }
 
    public class DataItem {
        public String Text { get; set; }
    }
}

Marin Bratanov
Telerik team
 answered on 01 May 2015
4 answers
82 views

Hi

I have noticed that all of a sudden several buttons seem to be causing multiple post backs and the issue appears to be that users are double clicking or if the response is slow doing multiple clicks.

This has only just happend within the last few weeks after upgrading to the SP1 latest release.  Has there been a change to the functionality?

Regards

Jon

Jon
Top achievements
Rank 1
 answered on 01 May 2015
2 answers
77 views

I am using version 2014.2.724.45.

I have a grid binded in a panel and the panel is not visible. On postback, the panel is then set to visible and the grid no longer has the default layout when displayed. 

Here is the mark up:



Any ideas?

Thanks! 

 

Viktor Tachev
Telerik team
 answered on 01 May 2015
6 answers
202 views

Good morning,

I have an instance where a new row inserted is not tracked if followed immediately after a row deletion in a RadGrid in batch edit mode.

Process:

1- Add a new row with column named 'AA'

2- Relize I meant to name it 'ZZ' instead. Instead of editing, Delete the newly created row

3- Add the a new row with column named 'ZZ'

Following this process and looking at the results _changes of GridBatchEditing I see a single object is left after I delete the row. The object is -1: "delete". 

I performed the same test on the demo site and did not yield the same result.

I'm on the 2013.7.17 version. Was there a bug in the RadGrid regarding this that anyone knows of that has been fixed?

 Thanks

Viktor Tachev
Telerik team
 answered on 01 May 2015
1 answer
132 views

I am using Radgrid in my page more then 5000 records, when Page loading for the first time My RadGrid position is at top(Not be specified location and Grid is shaking while loading data) of Page for few seconds and after loaded entire data.It is coming normal position.
  Please find the attached problem screen below.
Rad Grid Style is

Style="position: fixed;left: bx; right: 10px; bottom: 110px; top: 206px;"

I want to fix(Don't want to move up to normal position) RadGrid Position always fixed even Page loading for the first time.

Note:- It is not happening in Chrome,Firefox only happen Internet Explorer, and I do not want to pagination for my page.

Please give me solutions.Thanks in advance...

Viktor Tachev
Telerik team
 answered on 01 May 2015
Narrow your results
Selected tags
Tags
+? more
Top users last month
Jay
Top achievements
Rank 3
Bronze
Iron
Iron
yw
Top achievements
Rank 2
Iron
Iron
Stefan
Top achievements
Rank 2
Iron
Iron
Iron
Kao Hung
Top achievements
Rank 1
Iron
Bohdan
Top achievements
Rank 2
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Jay
Top achievements
Rank 3
Bronze
Iron
Iron
yw
Top achievements
Rank 2
Iron
Iron
Stefan
Top achievements
Rank 2
Iron
Iron
Iron
Kao Hung
Top achievements
Rank 1
Iron
Bohdan
Top achievements
Rank 2
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?