BoldDesk®Customer service software with ticketing, live chat & omnichannel support, starting at $99/mo for unlimited agents. Try for free!
Hello,
I'm using Angular 7 and SyncFusion framework.
I began to add this component :
<ejs-documenteditor #document_editor id="container" style="width:100%;height:100%;display:block" [isReadOnly]=false
[enableEditor]=true [enableWordExport]=true
[documentEditorSettings]='tools1'
></ejs-documenteditor>
I added a list :
<ejs-listbox id="listbox" [dataSource]='data'>
</ejs-listbox>
and I want to drag and drop in content of word editor and element of list.
Hello,
Thank you for your reply; It's word on stackblitz.
When i repeat all process in my project; I have a missed method :
onSelect($event) and their
[fields]="fields" this is my all project :
<div class="row">
<div class="col-6">
<ejs-listview id='listview' [dataSource]='listData' (select)="onSelect($event)" allowDragAndDrop='true' [fields]="fields"></ejs-listview>
</div>
<div class="col-6">
<div class="control-section">
<div>
<div id="default_title_bar" class="e-de-ctn-title"></div>
<div>
<ejs-documenteditorcontainer #RTE id="defaultRTE" #documenteditor_default height="560px" [enableToolbar]=true
[locale]="culture" (created)="onCreate()" (documentChange)="onDocumentChange()"
[serviceUrl]='serviceLink' style="display:block;">
</ejs-documenteditorcontainer>
</div>
</div>
</div>
</div>
</div>
could you help me?
<ejs-listview id='listview' [dataSource]='listData' allowDragAndDrop='true'></ejs-listview>
|