System Details:
Joomla 2.5.1 (Fresh Install of Joomla on Fresh Database, not other extensions other than listed below)
com_arismartcontent_data.zip (With ARI JDataTables 1.3.1)
Editor option used is No Editor just HTML
When we edit the table below in the backend the table doesn't break and the tags are still in place when we go to edit it. However, when we go to edit the table from the front end, using the same editor as the backend it breaks the {arijdatatable bPaginate="true"}. When you view it has HTML from the front end it lists it as <div id="jdt_4f54c07f976b3"> </div>
I am editing as the superuser, and have Site > Global Configuration > Text Filters all set to no filtering for all users.
This is our original table data
Code: |
{arijdatatable bPaginate="true"}
<table>
<thead>
<tr>
<th>column1</th>
<th>column2</th>
<th>column3</th>
</tr>
</thead>
<tbody>
<tr>
<td>content1</td>
<td>content2</td>
<td>content3</td>
</tr>
</table>
{/arijdatatable}
|
This is what it looks like when we go to edit it from the front end.
Code: |
<p><div id="jdt_4f54c26689425"> </p>
<table>
<thead>
<tr><th>column1</th><th>column2</th><th>column3</th></tr>
</thead>
<tbody>
<tr>
<td>content12</td>
<td>content2</td>
<td>content322</td>
</tr>
</tbody>
</table>
<p> </div></p>
|