Advertisement
Guest User

Untitled

a guest
Apr 17th, 2014
58
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.82 KB | None | 0 0
  1. <dialog jcr:primaryType="cq:Dialog" title="Test Component" xtype="panel">
  2. <items jcr:primaryType="cq:WidgetCollection">
  3. <title jcr:primaryType="cq:Widget" fieldLabel="Selection" name="./sel" type="select" xtype="selection">
  4. <listeners jcr:primaryType="nt:unstructured" selectionchanged="function(comp, val, isChecked) {console.log("selected");}"/>
  5. <options jcr:primaryType="cq:WidgetCollection">
  6. <opt1 jcr:primaryType="nt:unstructured" text="Option 1" value="1"/>
  7. <opt2 jcr:primaryType="nt:unstructured" text="Option 2" value="2"/>
  8. <opt3 jcr:primaryType="nt:unstructured" text="Option 3" value="3"/>
  9. </options>
  10. </title>
  11. <link jcr:primaryType="cq:Widget" fieldLabel="Some Text" name="./text" xtype="textfield"/>
  12. </items>
  13. </dialog>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement