0

我正在尝试修改 RTE 下的 LinkDialog.js 以默认选中“在新窗口中打开”复选框。根据 day API,它应该只是将值 "checked": true 添加到默认值,但这不起作用。它确实接受我的其他值更改,例如名称,所以我现在正在编辑。

这是我修改的代码:

{
                "itemId": "targetBlank",
                "name": "targetBlank",
                "xtype": "checkbox",
                "boxLabel": CQ.I18n.getMessage("Open in new window"),
                "checked": true,
                "value": "targetBlank"
            }
4

1 回答 1

0

试试这些道具:

checked="{Boolean}true"
defaultValue="true"
于 2013-06-07T23:55:11.510 回答