Skip to content

Instantly share code, notes, and snippets.

@weeksdev
Last active January 1, 2016 13:09
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save weeksdev/8149579 to your computer and use it in GitHub Desktop.
Save weeksdev/8149579 to your computer and use it in GitHub Desktop.
ExtJS MVC Snippets
Ext.define('App.controller.exampleController', {
extend: 'Ext.app.Controller',
init: function () {
this.control({
'#someButton': {
click: this.buttonAction
}
});
},
buttonAction: function (btn) {
//do stuff
}
});
Ext.define('App.view.exampleForm', {
extend: 'Ext.form.Panel',
xtype: 'exampleForm',
defaults: {
padding:'10 10 10'
},
items: [{
xtype: 'textfield',
itemId:'parameter',
fieldLabel: 'Parameter',
allowBlank: false
}],
buttons: [{
text: 'search',
itemId:'searchBtn'
}]
});
Ext.define('App.view.exampleGrid', {
extend: 'Ext.grid.Panel',
requires: [],
controllers: ['Main'],
store: 'exampleStore',
xtype: 'exampleGrid',
viewConfig: {
enableTextSelection: true,
},
features: [
],
plugins: [
//THIS IS A STANDARD SETTING WHICH ALLOWS FOR FASTER DATA IN GRIDS
'bufferedrenderer',
],
tbar: {
items: [
'->',
]
},
columns:{
defaults:{
},
items: [
{ header: "field", dataIndex: "field", hidden:true }
]
}
});
Ext.define('App.model.exampleModel', {
extend: 'Ext.data.Model',
fields: [
{ name: 'field', type: 'auto' }
],
proxy: {
type: 'jsonp',
url: 'url',
extraParams: {
'param': 'value'
},
headers: { 'Content-type': 'text/json; charset=utf-8', 'Accepts': 'text/json' },
reader: {
type: 'json',
root: 'data',
successProperty: 'success'
}
}
});
Ext.define('App.store.exampleStore', {
extend: 'Ext.data.Store',
model: 'App.model.exampleModel',
autoLoad: false
});
@weeksdev
Copy link
Author

Inlcudes Store, Model, Grid, & Controller Mock-Ups

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment