Rich Text Editor Default Values Syntax
Following is my widget code for RTE
<richText
jcr:primaryType="cq:Widget"
fieldLabel="Rich text"
name="./richText"
xtype="richtext">
<rtePlugins jcr:primaryType="nt:unstructured">
<table
jcr:primaryType="nt:unstructured"
features="[table,removetable,insertrow,removerow,insertcolumn,removecolumn]"
defaultValues="{'cellspacing':'0','cellpadding':'1','border':'1','columns':'10','rows':'4','header':'none'}"/>
</rtePlugins>
When I create a table , I dont see defaultValues are getting applied to the table.
Is there something wrong with syntax or I am missing more than that ?