New Product LaunchBoldDesk: Help desk ticketing software starts at $10 for 3 agents.
Try it for free.
want to use mail merge, |
To perform mail merge in DocumentEditor, we don’t have built-in mail merge functionality. You can perform Mail-merge in server side by using Syncfusion.DocIO library.
You can find more detail about mail merge functionality from below UG link.
Mail Merge UG: https://help.syncfusion.com/file-formats/docio/working-with-mailmerge#performing-mail-merge-with-business-objects
Here is KB documentation in MVC
| |
is there any option to add custom button in editor |
Currently Document editor doesn’t provide any public API to customize the toolbar.
You can follow any of the below options.
## Disable Toolbar
You can hide the existing toolbar in DocumentEditor by set enableToolbar property as false.
Sample code snippet
## Custom Toolbar
You can create customize toolbar for document editor based on your requirement.
Please find more details about custom toolbar from below documentation link
Toolbar with paragraph formatting options alone:
Toolbar with Text formatting with text formatting options alone:
API documentation : https://ej2.syncfusion.com/angular/documentation/api/document-editor
Note: We have also logged this as feature request. Please track the below feedback link for feature status.
| |
any other way to open dragable list inside documenteditor. |
You can drag and drop list view content and insert it as field in document editor.
You can insert field in document editor using insertField method in editor module.
Code snippet
this.container.documentEditor.editor.insertField('MERGEFIELD '+text+' \\* MERGEFORMAT', '{{'+text+'}}');
First parameter refers field code and second parameter refers display text.
We have prepared the sample with drag and drop list view options and insert the text as merge field in document editor. Please download it from the below link and let us know if this helps you.
|