1

我现在正在处理一项任务,我需要显示“表格”插件的现有功能。但是,我很难启用它。在下面使用此代码时,我只能获得表格属性功能。这是我在富文本编辑器上唯一显示的工具/图标。有人可以帮我启用/显示其他功能/图标,例如(插入列、插入行等)吗?

                <tableField jcr:primaryType="cq:Widget" xtype="richtext">
                    <rtePlugins jcr:primaryType="nt:unstructured">
                        <table jcr:primaryType="nt:unstructured" features="*" />
                    </rtePlugins>
                </tableField>

我已经尝试过这样做(如下),但我仍然失败了。

                <tableField jcr:primaryType="cq:Widget" xtype="richtext">
                    <rtePlugins jcr:primaryType="nt:unstructured">
                        <table jcr:primaryType="nt:unstructured" features="[insertcolumn,insertrow]" />
                    </rtePlugins>
                </tableField>

http://dev.day.com/docs/en/cq/current/administering/configuring_rich_text_editor.html

4

1 回答 1

0

That's the only toolbar button that the table plugin provides. To use the other features, right-click on the table itself:

table context menu

于 2013-08-01T11:52:05.567 回答