kolkov / angular-editor

A simple native WYSIWYG editor component for Angular 6 -14+
https://angular-editor.kolkov.ru
MIT License
678 stars 360 forks source link

custom buttons in the tool bar of kolkov angular editor #571

Open tt-divya opened 2 months ago

tt-divya commented 2 months ago

i want to add two custom buttons in the tool bar of kolkov angular editor, can any one help

merlinwarage commented 1 month ago
 <angular-editor [config]="editorConfig">
            <ng-template #customButtons>
                <ae-toolbar-set>
                    <ae-button
                        iconClass="fa fa-anchor ae-button primary"
                        class="ae-button primary"
                        title="customBtn"
                        (buttonClick)="customBtnClick()"
                    >
                    </ae-button>
                </ae-toolbar-set>
            </ng-template>
 </angular-editor>