|
<ejs-richtexteditor#defaultRTE id="defaultRTE" (created)="onRTECreate($event)">
<ng-template #valueTemplate>
<p>RTE content</p>
</ng-template>
</ejs-richtexteditor> |
|
public onRTECreate(e: any): void {
this.rteObj.refreshUI();
} |
|
<ejs-richtexteditor #defaultRTE id="defaultRTE" (created)="onRTECreate($event)">
<ng-template #valueTemplate>
<p>RTE content</p>
</ng-template>
</ejs-richtexteditor> |
|
export class AppComponent {
@ViewChild("defaultRTE")
public rteObj;
public onRTECreate(e: any): void {
this.rteObj.refreshUI();
}
} |
Hi
When I am trying to go to next line in RTE by clicking enter,it's taking space and stays in similar line .
Am I missing something?
Hi Pratik,
We have tried replicating the issue you have reported and found it is not replicated. Could you please provide a replicating sample?
Regards
Gokulraj Devarajan
Hi
I have added RichtextEditor in my angular project. I am not able to see Toolbar even after making all the necessary changes. Please see the below code.
Package.json
.html
I am actually having the same problem.
If I add values inside the ng-template all good, however if I remove them I have the same problem. I single line.