﻿id	summary	reporter	owner	description	type	status	priority	milestone	component	version	resolution	keywords	cc
16859	Not able to Assign Table Elements Contents To CKEDITOR at RunTime	Vijay M R		"
Below is My CsHtml File 

<div id=""kendorte-@entityId"" class=""rte-editor"">
    @*@Html.TextArea(""editorplace"", new { @id = ""editor1"" ,@class=""inline-editor ms-rtestate-write""})*@
    <textarea @*class=""inline-editor ms-rtestate-write""*@
              class=""ckeditor""
              id=""editor-@entityId""
              @*id=""editor1""*@
              data-entity-id=""@entityId""
              data-entity-qavid=""@qavId""
              data-iscore-attr=""@Model.IsCore""
              data-connect-coreid=""@Model.ConnectCorePriorityId"">
@{
  var data = Html.Raw(Model.Text);
  }
            
        
    </textarea>

    <script src=""../../content/ckeditor/ckeditor.js""></script>
    @*<script src=""../../content/ckeditor/samples/js/sample.js""></script>*@
    <script>
        callckeditor('editor-@entityId', @isCP,@data);

    </script>
</div>


callckeditor is a function 

callckeditor(objectid,iscp,textcontent) 
{
CKEDITOR.document.getById('editor-@entityId').setHtml('@data');
}


The problem is i am not able to Load the Table related data on TextEditor

The Content is 
<table style=""width:100%"">
  <tr>
    <th>Firstname</th>
    <th>Lastname</th> 
    <th>Age</th>
  </tr>
  <tr>
    <td>Jill</td>
    <td>Smith</td> 
    <td>50</td>
  </tr>
  <tr>
    <td>Eve</td>
    <td>Jackson</td> 
    <td>94</td>
  </tr>
</table>


== Other details (browser, OS, CKEditor version, installed plugins) ==
latest CKeditor Version
"	Bug	new	Normal		Core : Tables	4.7.0			
