How do I create an Ownerdraw dialog in CQ5?
See the Ownerdraw source at
/libs/cq/widgets/source/widgets/form/OwnerDraw.js
.
The constructor reveals the config properties:
constructor : function(config){ this.html = config.html; this.url = config.url ? config.url : ""; this.hiddenField = new CQ.Ext.form.Hidden({ "name": config.name }); CQ.Ext.applyIf(config, { "border": false, "items": this.hiddenField }) CQ.form.OwnerDraw.superclass.constructor.call(this, config); }
it allows you to include custom HTML (html config property) or calling an external URL (url config property). This makes most sense for static HTML display. If you require customized widgets or extensions to existing widgets, it is recommendable to create your own xtype (widget) instead.
CQ5.1, CQ5.2
Logga in på ditt konto