I added [enableResize] to rich textboxbut i don't see icon in the bottom right corner. [enableResize]='true'
<ejs-richtexteditor id='additionalInformation1' [enableResize]='true' [height]="200" [toolbarSettings]='rteConfig.tools'
[iframeSettings]='rteConfig.iframe' [fontFamily]='rteConfig.fontFamily'
[(ngModel)]="nameProperty"
formControlName="nameProperty" [disabled]="isReadonly">
</ejs-richtexteditor>
export class RteConfig {
public readonly tools: object = {
items: ['Undo', 'Redo', '|',
'Bold', 'Italic', 'Underline', 'StrikeThrough', '|',
'FontSize', 'FontColor', 'BackgroundColor', '|',
'Alignments', '|', 'OrderedList', 'UnorderedList', '|',
'Indent', 'Outdent', '|', 'FullScreen'],
enableFloating: false,
};
public readonly iframe: object = { enable: true};
<ejs-richtexteditor id='additionalInformation1' [enableResize]='true' [height]="200" [toolbarSettings]='rteConfig.tools'
[iframeSettings]='rteConfig.iframe' [fontFamily]='rteConfig.fontFamily'
[(ngModel)]="nameProperty"
formControlName="nameProperty" [disabled]="isReadonly">
</ejs-richtexteditor>
export class RteConfig {
public readonly tools: object = {
items: ['Undo', 'Redo', '|',
'Bold', 'Italic', 'Underline', 'StrikeThrough', '|',
'FontSize', 'FontColor', 'BackgroundColor', '|',
'Alignments', '|', 'OrderedList', 'UnorderedList', '|',
'Indent', 'Outdent', '|', 'FullScreen'],
enableFloating: false,
};
public readonly iframe: object = { enable: true};
|
import { ToolbarService, LinkService, ImageService, ResizeService, HtmlEditorService } from '@syncfusion/ej2-angular-richtexteditor';
@Component({
...
providers: [ToolbarService, LinkService, ImageService, ResizeService, HtmlEditorService]
})
|