Created
October 7, 2011 10:14
-
-
Save homeyer/1269963 to your computer and use it in GitHub Desktop.
An Ext window with a green button using a custom component UI
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Ext.application({ | |
name: 'My App', | |
launch: function() { | |
Ext.create('Ext.window.Window',{ | |
title: 'Custom Window', | |
width : 200, | |
height : 150, | |
modal: true, | |
layout: 'fit', | |
items: { | |
xtype: 'form', | |
html: 'Form Content', | |
border: 0, | |
buttons: [{ | |
text: 'close', | |
ui: 'green' | |
}] | |
} | |
}).show(); | |
} | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment