See API docs for more options.
var dialog = new CQ.Dialog({
'width': 600,
'modal': true,
'resize': false,
'title': 'My Title',
'items': {
'xtype': 'tabpanel',
'items': [
{
'xtype': 'panel',
'title': 'Basic',
'hideMode': 'offsets',
'items': [
{
'xtype': 'textfield',
'fieldLabel': CQ.I18n.get('app.components.some.key'),
},
//...
]
}
]
},
'buttons': [
{
'text': 'Save',
'handler': function() {
//...
}
},
{
'text': 'Cancel',
'handler': function () {
this.close();
}
}
]});
Keine Kommentare:
Kommentar veröffentlichen