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
/** | |
* This shows an example of a common "Contact Us" form in a popup window. The form uses | |
* vbox and hbox layouts to achieve a uniform flexible layout even when the window is | |
* resized. | |
* | |
* Note that Tab based navigation within the modal window is confined to within the window. | |
*/ | |
Ext.define('KitchenSink.view.forms.ContactForm', { | |
extend: 'Ext.form.Panel', | |
xtype: 'form-contact', |
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
/** | |
* Text Field {@link Ext.field.Text#triggers trigger} widget. | |
*/ | |
Ext.define('Ext.field.trigger.Trigger', { | |
extend: 'Ext.Widget', | |
xtype: 'trigger', | |
alias: 'trigger.trigger', | |
requires: [ | |
'Ext.util.ClickRepeater' |
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
javascript:(Ext.ComponentManager.each(function(c) { | |
c = Ext.getCmp(c); | |
if (c.isContainer && !c.isHeader && !c.isXType('tablepanel') && !c.isXType('headercontainer') && !c.hasCls('x-fieldset-header') && c.items.items.length === 1) { | |
console.log(c.id + ' only contains 1 child: check for overnesting'); | |
c.rendered && c.el.frame('red'); | |
} | |
})); |
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
cluster: | |
name: CMTPRODLDN | |
network: | |
host: ********* | |
node: | |
data: true | |
path: |
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
<html> | |
<head> | |
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> | |
<title>Auto heihght grid</title> | |
<link rel="stylesheet" type="text/css" href="../../resources/css/ext-all.css" /> | |
<link rel="stylesheet" type="text/css" href="../shared/example.css" /> | |
<script type="text/javascript" src="../../ext-all.js"></script> | |
<script type="text/javascript"> | |
Ext.Loader.setConfig({enabled: true}); |
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.require('*'); | |
Ext.onReady(function() { | |
Ext.QuickTips.init(); | |
Ext.getBody().update(''); | |
// setup the state provider, all state information will be saved to a cookie | |
Ext.state.Manager.setProvider(Ext.create('Ext.state.CookieProvider')); | |
// sample static data for the store | |
var myData = [ |
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
<html> | |
<head> | |
<title>Load + Startup test</title> | |
<link rel="stylesheet" type="text/css" href="../../resources/css/ext-all.css" /> | |
<script type="text/javascript"> | |
window.start = new Date().getTime(); | |
</script> | |
<script type="text/javascript" src="../../ext-all.js"></script> | |
<script type="text/javascript"> | |
Ext.require(['*']); |
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
/** | |
* @class Ext.EventManager | |
* Registers event handlers that want to receive a normalized EventObject instead of the standard browser event and provides | |
* several useful events directly. | |
* See {@link Ext.EventObject} for more details on normalized event objects. | |
* @singleton | |
*/ | |
Ext.EventManager = new function() { | |
var EventManager = this, | |
doc = document, |
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.require('*'); | |
Ext.onReady(function() { | |
Ext.define('Employee', { | |
extend: 'Ext.data.Model', | |
fields: [ | |
{name: 'rating', type: 'int'}, | |
{name: 'salary', type: 'float'}, | |
{name: 'name'} | |
] |
NewerOlder