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
.notifybar{ | |
margin: 3px !important; | |
} | |
.notifybar-success, .x-nlg .notifybar-success { | |
border: 1px solid #AEE0AE !important; | |
background-color: #D1EED1 !important; | |
background-image: none !important; | |
} | |
.notifybar-error, .x-nlg .notifybar-error { | |
border: 1px solid #F79897 !important; |
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.define('Ext.ux.panel.header.ExtraIcons', { | |
extend: 'Ext.AbstractPlugin', | |
alias: 'plugin.headericons', | |
alternateClassName: 'Ext.ux.PanelHeaderExtraIcons', | |
iconCls: '', | |
index: undefined, | |
headerButtons: [], |
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
/* CSS originally from http://twitter.github.com/bootstrap/index.html | |
and modified slightly since the full bootstrap css is not included */ | |
.alert { | |
padding: 8px 35px 8px 14px; | |
margin-bottom: 18px; | |
color: #c09853; | |
text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5); | |
background-color: #fcf8e3; | |
border: 1px solid #fbeed5; |
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
One bugfix | |
http://www.sencha.com/forum/showthread.php?23615-Grid-Search-Plugin&p=799141&viewfull=1#post799141 | |
For datecolumns like: | |
,{ | |
text:'date', | |
dataIndex:'datecreated', | |
xtype:'datecolumn', | |
format:'d.m.Y H:i' | |
} |
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.define('Ext.ux.data.proxy.JsonAjaxProxy', { | |
extend:'Ext.data.proxy.Ajax', | |
alias:'proxy.jsonajax', | |
actionMethods : { | |
create: "POST", | |
read: "POST", | |
update: "POST", | |
destroy: "POST" | |
}, |
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 combo functions as a remote-local ExtJS combo hybrid. It starts out | |
as a remote combo so that nothing is loaded until the trigger button is clicked | |
or the user starts typing in the combobox. Once the data is loaded, it switches | |
to local mode so that no more queries are made to the server. It therefore | |
assumes that all data is loaded on the first load request. It also shows the | |
loading UI when data is being loaded since it starts out as 'remote'. | |
*/ | |
Ext.define("Ext.ux.form.field.RemoteToLocalComboBox", { | |
extend: 'Ext.AbstractPlugin', |
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
div.stepbar { | |
height: 44px; | |
} | |
ul.steplist { | |
height: 44px; | |
list-style-image: none; | |
list-style-position: outside; | |
list-style-type: none; | |
margin: 2px 10px 0; |
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.ux.state.SessVarsProvider | |
* @extends Ext.state.Provider | |
* Session state provider that stores state information on the client side | |
* for the length of the session. Important - sessvars.js must be included | |
* in the page. http://www.thomasfrank.se/sessionvars.html | |
* @depends sessvars.js | |
*/ | |
Ext.define('Ext.ux.state.SessVarsProvider', { | |
extend: 'Ext.state.Provider', |
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.define('Ext.ux.EmailWindow', { | |
extend: 'Ext.window.Window', | |
alias: 'widget.email', | |
requires: [ | |
'Ext.form.*', | |
'Ext.window.Window', | |
'Ext.data.*', | |
'Ext.Ajax', | |
'Ext.LoadMask' | |
], |
OlderNewer