Hi,
I have multiple instances of ckeditor in inline editing mode on the same page to whom I want to give different names with the id of my sections as shown below
<div ckeditor="options" ng-model="section.content" contenteditable="true" id="sectioneditor-{{section.id}}"></div>
However the section id is not replaced - I see the id of ckeditor as "sectioneditor-{{section.id}}" instead of "sectioneditor-1". The section object is already in the scope.
What am I doing wrong ??
Hi, I have multiple instances of ckeditor in inline editing mode on the same page to whom I want to give different names with the id of my sections as shown below
<div ckeditor="options" ng-model="section.content" contenteditable="true" id="sectioneditor-{{section.id}}"></div>
However the section id is not replaced - I see the id of ckeditor as "sectioneditor-{{section.id}}" instead of "sectioneditor-1". The section object is already in the scope. What am I doing wrong ??