How to Create an Ownerdraw Dialog

Questions

How do I create an Ownerdraw dialog in CQ5?

Answer / Resolution

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.

Applies to

CQ5.1, CQ5.2

 Adobe

รับความช่วยเหลือได้เร็วและง่ายกว่าเดิม

หากคุณเป็นผู้ใช้ใหม่

Adobe MAX 2024

Adobe MAX
การประชุมความคิดสร้างสรรค์

14-16 ต.ค. Miami Beach และออนไลน์

Adobe MAX

การประชุมความคิดสร้างสรรค์

14-16 ต.ค. Miami Beach และออนไลน์

Adobe MAX 2024

Adobe MAX
การประชุมความคิดสร้างสรรค์

14-16 ต.ค. Miami Beach และออนไลน์

Adobe MAX

การประชุมความคิดสร้างสรรค์

14-16 ต.ค. Miami Beach และออนไลน์