Expand my Community achievements bar.

SOLVED

Rich Text Editor Default Values Syntax

Avatar

Level 4

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 ? 

1 Accepted Solution

Avatar

Correct answer by
Level 4

I was able to use default Values in following way : 

 

<rtePlugins jcr:primaryType="nt:unstructured">

                                    <table

                                            jcr:primaryType="nt:unstructured"

                                            features="[table,removetable,insertrow,removerow,insertcolumn,removecolumn]">

                                    <defaultValues

                                            jcr:primaryType="nt:unstructured"

                                            height="400"

                                            width="700"

                                            cellspacing="2"

                                            cellpadding="2"

                                             header="top"/>         

                                    </table>        

                                    <misctools  

                                            jcr:primaryType="nt:unstructured"

                                            features="*"/>      

                            </rtePlugins>              

View solution in original post

3 Replies

Avatar

Level 10

I dont see any property called 'defaultValues' for table . refer [1] https://docs.adobe.com/docs/en/aem/6-1/administer/operations/page-authoring/rich-text-editor.html#St... (Tables and Table Cells)

you can use 'TableStyles' or 'CellStyles' to mention the same.

Avatar

Correct answer by
Level 4

I was able to use default Values in following way : 

 

<rtePlugins jcr:primaryType="nt:unstructured">

                                    <table

                                            jcr:primaryType="nt:unstructured"

                                            features="[table,removetable,insertrow,removerow,insertcolumn,removecolumn]">

                                    <defaultValues

                                            jcr:primaryType="nt:unstructured"

                                            height="400"

                                            width="700"

                                            cellspacing="2"

                                            cellpadding="2"

                                             header="top"/>         

                                    </table>        

                                    <misctools  

                                            jcr:primaryType="nt:unstructured"

                                            features="*"/>      

                            </rtePlugins>