Declined
Last Updated: 04 Oct 2022 12:36 by ADMIN
Created by: Babu
Comments: 4
Category: Editor
Type: Bug Report
1

 

Clear formatting is not working properly , as it removed the span tag and other attributes of the html tags.

For example :

HTML  content - before applying the clear formatting:

<p style="line-height: normal;"><strong><em><span style="font-family:Calibri, Candara, Segoe, Segoe UI, Optima, Arial, sans-serif; font-size:11px;" class="ABS_Comments" id="ABS_Comments" name="ABS_Comments">{ABS_Comments}</span></em></strong></p>

HTML Content - after  applying the clear formatting :

<p style="line-height: normal;">{ABS_Comments}</p>

It suppose to remove the only the formatting tags instead span and actual tags.

 

 

Declined
Last Updated: 23 Sep 2022 07:54 by ADMIN
Created by: Babu
Comments: 1
Category: Editor
Type: Bug Report
1

 

Hi

As per your suggestion we have writing the below code for focusing the cursor position,  it is working fine but after putting table on the editor and set the background of the any text is not working . If the table is not placed on the editor and select the background color to the any text working fine. 

I think , this would happen because of the below code. Please fix this issue.

Note : Foreground color is working fine in all cases.

export class AppComponent {
  onChange(e) {
    const data = e.value.split('<');
    if (data.includes('table>')) {
      e.focus();
    }
  }
Declined
Last Updated: 09 Jun 2021 15:41 by ADMIN

if editor recive a value like '<span class="platzhalter">Empfaenger_Debitor</span>'

by rendering console show this error

core.js:15724 ERROR TypeError: Cannot read property 'split' of null
    at utils.js:181
    at Array.map (<anonymous>)
    at getUniqueStyleValues (utils.js:200)
    at SafeSubscriber._next (index.js:1810)
    at SafeSubscriber.push../node_modules/rxjs/_esm5/internal/Subscriber.js.SafeSubscriber.__tryOrUnsub (Subscriber.js:194)
    at SafeSubscriber.push../node_modules/rxjs/_esm5/internal/Subscriber.js.SafeSubscriber.next (Subscriber.js:132)
    at Subscriber.push../node_modules/rxjs/_esm5/internal/Subscriber.js.Subscriber._next (Subscriber.js:76)
    at Subscriber.push../node_modules/rxjs/_esm5/internal/Subscriber.js.Subscriber.next (Subscriber.js:53)
    at BehaviorSubject.push../node_modules/rxjs/_esm5/internal/Subject.js.Subject.next (Subject.js:47)
    at BehaviorSubject.push../node_modules/rxjs/_esm5/internal/BehaviorSubject.js.BehaviorSubject.next (BehaviorSubject.js:38)