extjs-gpl
Version:
GPL licensed version of Sencha Ext JS
20 lines (18 loc) • 425 B
JavaScript
/**
* Demonstrates a basic window control.
*/
Ext.define('KitchenSink.view.window.BasicWindow', {
extend: 'Ext.window.Window',
xtype: 'basic-window',
//<example>
exampleTitle: 'Basic Window',
//</example>
height: 300,
width: 400,
title: 'Window',
scrollable: true,
bodyPadding: 10,
html: KitchenSink.DummyText.extraLongText,
constrain: true,
closable: false
});