AEM 6.1: How to get the warning icon in a cq:dialog. Is it some xtype that would help? If it were a pop up then,
CQ.Ext.Msg.show({ "icon":CQ.Ext.MessageBox.WARNIN, }) helps
but for "cq:Dialog", How should one **
Display the warning icon
With the warning message in a cq:dialog.
"jcr:primaryType": "cq:Dialog",
"height": 240,
"title":CQ.I18n.getMessage("Activate Later"),
"id": CQ.Util.createId("cq-activate-later-dialog"),
"params": {
"_charset_":"utf-8"
},
"items": {
"jcr:primaryType": "cq:Panel",
"items": {
"jcr:primaryType": "cq:WidgetCollection",
**"warnMsg": {
"xtype": "displayfield",
"html":CQ.I18n.getMessage("my warning message here."),
"hideLabel":true,
"hidden":flagHidden,
"name":"warnMsg",
},**
"absTime": {
"xtype": "datetime",
"fieldLabel":CQ.I18n.getMessage("Activation Date"),
"name":"absTime",
"allowBlank": false
}
}
},
This code removes the text from wrapping around the icon displayed