Hi,
I have a textarea in a form which can have no content – when this is displayed Editor seems to default in the linebreak which moves the text displayed and creates a blank line. When no lineBreak is defined (ie defaults to div) this seems to be worse as it wraps each subsequent display in another div so when I save multiple times I just have a field full of <div><div>…..</div></div>
HTML
<tr>
<td class="prod_label">Short Desc</td>
<td class="prod_check"></td>
<td class="prod_data"><textarea cols="80" rows="5" id="detailsShortDescription" name="detailsShortDescription" ><?php echo $product->getShortDescription(); ?></textarea></td>
</tr>
Editor Settings/Invocation
$('#detailsShortDescription').jqxEditor({ tools: 'bold italic underline | ul | html ',lineBreak:'br' });