Line Break before a BOLD formated word in FireFox with Enter is not working properly.

Last post 07-30-2012, 8:10 AM by Kenneth. 5 replies.
Sort Posts: Previous Next
  •  07-26-2012, 9:12 AM 74272

    Line Break before a BOLD formated word in FireFox with Enter is not working properly.

    Dear Cute Team,
     
    The Line Break Functionality when using FireFox (the Demo included) is not performing properly when done in front of a BOLD formatted Word in a Para.

    Stept 1: Select some word.
    Stept 2: Apply Bold formatting on the selected word.
    Stept 3: Go / Click a few words in front of the selected word.
    Stept 4: Press ENTER.
     
    Defect: The desired result of new Para Break is not generating properly. The Nodes breaks at the Bold Formatted Word.
     
    Thanking you in anticipation.
  •  07-26-2012, 10:37 AM 74276 in reply to 74272

    Re: Line Break before a BOLD formated word in FireFox with Enter is not working properly.

    Hi gammaSharma,
     
    This issue will be fixed this next version.
     
    Regards,
     
    Ken 
  •  07-27-2012, 4:36 AM 74282 in reply to 74276

    Re: Line Break before a BOLD formated word in FireFox with Enter is not working properly.

    Dear Kenneth,
     
    Thank you for the prompt reply. Was stuck with this issus that was not there in the previous version. Have tries in the Gecho Script around the Gecko_InsertBreakElement() function  to no avail.
     
     
    Also there is another major issue with Crome Implementation.
     
    On clicking on any Image, the cursor position remains with the previous position and thus the range do not get updated and hence its impossible in crome to find out which image was clicked.
     
    Do you have any time line for the next version too? Waiting for the bug fix eagerly with fingers crossed. ;)
  •  07-27-2012, 7:12 AM 74285 in reply to 74282

    Re: Line Break before a BOLD formated word in FireFox with Enter is not working properly.

    Hi gammaSharma,
     
    The development team working on the demo and the teaching video, I think the new version will come soon.
     
    And the chrome image select behavior will be improved in the new version too.
     
    Regards,
     
    Ken 
  •  07-30-2012, 2:08 AM 74296 in reply to 74285

    Re: Line Break before a BOLD formated word in FireFox with Enter is not working properly.

    How do capture the Save Click Even in VB for CuteEditor ASP.NET
     
    If am doing the following but its not working
     
    If Editor1.TemplateItemList.Equals("Save") Then
                MsgBox("Save Clicked", MsgBoxStyle.Information, "Save Clicked")
    End If
  •  07-30-2012, 8:10 AM 74302 in reply to 74296

    Re: Line Break before a BOLD formated word in FireFox with Enter is not working properly.

    Hi jackdhp,
     
    You can catch the "PostBackCommand" event of the editor, like
     
    1. <%@ Page Language="VB" %>  
    2.   
    3. <%@ Register TagPrefix="CE" Namespace="CuteEditor" Assembly="CuteEditor" %>  
    4. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">  
    5.   
    6. <script runat="server">  
    7.   
    8.     Protected Sub editor1_PostBackCommand(ByVal sender As ObjectByVal e As System.Web.UI.WebControls.CommandEventArgs)  
    9.         label1.Text = editor1.Text  
    10.     End Sub  
    11. </script>  
    12.   
    13. <html xmlns="http://www.w3.org/1999/xhtml">  
    14. <head runat="server">  
    15.     <title>example</title>  
    16. </head>  
    17. <body>  
    18.     <form id="form1" runat="server">  
    19.         <div>  
    20.             <CE:Editor ID="editor1" runat="server" OnPostBackCommand="editor1_PostBackCommand">  
    21.             </CE:Editor>  
    22.             <br />  
    23.             <asp:Label ID="label1" runat="server"></asp:Label>  
    24.         </div>  
    25.     </form>  
    26. </body>  
    27. </html>  
    Regards,
     
    Ken 
View as RSS news feed in XML