PDA

View Full Version : image below buttons in dialog



Absalom
10 Aug 2007, 1:41 AM
How can I place an image below the buttons in a dialog?

Edit: The buttons are added with: dialog.addButton('Close', dialog.hide, dialog);

tryanDLS
10 Aug 2007, 7:40 AM
The buttons get appended to the dialog's footer property. Inspect the generated HTML of that element in firebug. You should be able to use DomHelper to append more html to that element to contain what you need.

Absalom
10 Aug 2007, 10:30 AM
Aha! Thank you!