view release on metacpan or search on metacpan
share/examples/ux/css/ux-all.css view on Meta::CPAN
625626627628629630631632633634635636637638639640641642643644645}
/* StatusBar - structure */
.x-statusbar .x-status-text {
cursor:
default
;
/*
height: 21px;
line-height: 21px;
padding: 0 4px;
*/
}
.x-statusbar .x-status-busy {
padding-left: 25px !important;
background: transparent
no
-repeat 3px 2px;
}
.x-toolbar div.xtb-text
.x-statusbar .x-status-text-panel {
border-top: 1px solid;
border-right: 1px solid;
border-bottom: 1px solid;
share/examples/ux/css/ux-all.css view on Meta::CPAN
647648649650651652653654655656657658659660661662663664665666
padding: 2px 8px 2px 5px;
}
/* StatusBar word processor example styles */
#word-status .x-status-text-panel .spacer {
width: 60px;
font-size:0;
line-height:0;
}
#word-status .x-status-busy {
padding-left: 25px !important;
background: transparent
no
-repeat 3px 2px;
}
#word-status .x-status-saved {
padding-left: 25px !important;
background: transparent
no
-repeat 3px 2px;
}
/* StatusBar form validation example styles */
share/examples/ux/css/ux-all.css view on Meta::CPAN
697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729}
/* *********************************************************** */
/* *********************************************************** */
/* *********************************************************** */
/* StatusBar - visual */
.x-statusbar .x-status-busy {
background-image: url(../images/loading.gif);
}
.x-statusbar .x-status-text-panel {
border-color:
#99bbe8 #fff #fff #99bbe8;
}
/* StatusBar word processor example styles */
#word-status .x-status-text {
color:
#777;
}
#word-status .x-status-busy {
background-image: url(../images/saving.gif);
}
#word-status .x-status-saved {
background-image: url(../images/saved.png);
}
/* StatusBar form validation example styles */
.x-statusbar .x-status-error {
color:
#C33;
share/examples/ux/statusbar/StatusBar.js view on Meta::CPAN
146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180});
</code></pre>
*/
/**
*
@cfg
{String} cls
* The base class applied to the containing element
for
this component on render (defaults to
'x-statusbar'
)
*/
cls :
'x-statusbar'
,
/**
*
@cfg
{String} busyIconCls
* The
default
<code>{
@link
#iconCls}</code> applied when calling
* <code>{
@link
#showBusy}</code> (defaults to <tt>'x-status-busy'</tt>).
* It can be overridden at any
time
by passing the <code>iconCls</code>
* argument into <code>{
@link
#showBusy}</code>.
*/
busyIconCls :
'x-status-busy'
,
/**
*
@cfg
{String} busyText
* The
default
<code>{
@link
#text}</code> applied when calling
* <code>{
@link
#showBusy}</code> (defaults to <tt>'Loading...'</tt>).
* It can be overridden at any
time
by passing the <code>text</code>
* argument into <code>{
@link
#showBusy}</code>.
*/
busyText :
'Loading...'
,
/**
*
@cfg
{Number} autoClear
* The number of milliseconds to
wait
after
setting the status via
* <code>{
@link
#setStatus}</code> before automatically clearing the status
* text and icon (defaults to <tt>5000</tt>). Note that this only applies
*
when
passing the <tt>clear</tt> argument to <code>{
@link
#setStatus}</code>
* since that is the only way to defer clearing the status. This can
* be overridden by specifying a different <tt>
wait
</tt> value in
* <code>{
@link
#setStatus}</code>. Calls to <code>{@link #clearStatus}</code>
* always clear the status bar immediately and ignore this value.
share/examples/ux/statusbar/StatusBar.js view on Meta::CPAN
403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432
this.currIconCls = cls;
}
}
else
{
this.currIconCls = cls;
}
return
this;
},
/**
* Convenience method
for
setting the status text and icon to special
values
that are pre-configured to indicate
* a
"busy"
state, usually
for
loading or processing activities.
*
@param
{Object/String} config (optional) A config object in the same
format
supported by {
@link
#setStatus}, or a
* string to
use
as the status text (in which case all other options
for
setStatus will be defaulted). Use the
* <tt>text</tt> and/or <tt>iconCls</tt> properties on the config to
override
the
default
{
@link
#busyText}
* and {
@link
#busyIconCls} settings. If the config argument is not specified, {@link #busyText} and
* {
@link
#busyIconCls} will be used in conjunction with all of the default options for {@link #setStatus}.
*
@return
{Ext.ux.StatusBar} this
*/
showBusy : function(o){
if
(typeof o ==
'string'
){
o = {text:o};
}
o = Ext.applyIf(o || {}, {
text: this.busyText,
iconCls: this.busyIconCls
});
return
this.setStatus(o);
}
});
Ext.reg(
'statusbar'
, Ext.ux.StatusBar);
share/examples/ux/statusbar/css/statusbar.css view on Meta::CPAN
202122232425262728293031323334353637383940*/
/* StatusBar - structure */
.x-statusbar .x-status-text {
cursor:
default
;
/*
height: 21px;
line-height: 21px;
padding: 0 4px;
*/
}
.x-statusbar .x-status-busy {
padding-left: 25px !important;
background: transparent
no
-repeat 3px 2px;
}
.x-toolbar div.xtb-text
.x-statusbar .x-status-text-panel {
border-top: 1px solid;
border-right: 1px solid;
border-bottom: 1px solid;
share/examples/ux/statusbar/css/statusbar.css view on Meta::CPAN
4243444546474849505152535455565758596061
padding: 2px 8px 2px 5px;
}
/* StatusBar word processor example styles */
#word-status .x-status-text-panel .spacer {
width: 60px;
font-size:0;
line-height:0;
}
#word-status .x-status-busy {
padding-left: 25px !important;
background: transparent
no
-repeat 3px 2px;
}
#word-status .x-status-saved {
padding-left: 25px !important;
background: transparent
no
-repeat 3px 2px;
}
/* StatusBar form validation example styles */
share/examples/ux/statusbar/css/statusbar.css view on Meta::CPAN
9293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124}
/* *********************************************************** */
/* *********************************************************** */
/* *********************************************************** */
/* StatusBar - visual */
.x-statusbar .x-status-busy {
background-image: url(../images/loading.gif);
}
.x-statusbar .x-status-text-panel {
border-color:
#99bbe8 #fff #fff #99bbe8;
}
/* StatusBar word processor example styles */
#word-status .x-status-text {
color:
#777;
}
#word-status .x-status-busy {
background-image: url(../images/saving.gif);
}
#word-status .x-status-saved {
background-image: url(../images/saved.png);
}
/* StatusBar form validation example styles */
.x-statusbar .x-status-error {
color:
#C33;
share/examples/ux/ux-all-debug.js view on Meta::CPAN
88208821882288238824882588268827882888298830883188328833883488358836883788388839884088418842884388448845884688478848884988508851885288538854});
</code></pre>
*/
/**
*
@cfg
{String} cls
* The base class applied to the containing element
for
this component on render (defaults to
'x-statusbar'
)
*/
cls :
'x-statusbar'
,
/**
*
@cfg
{String} busyIconCls
* The
default
<code>{
@link
#iconCls}</code> applied when calling
* <code>{
@link
#showBusy}</code> (defaults to <tt>'x-status-busy'</tt>).
* It can be overridden at any
time
by passing the <code>iconCls</code>
* argument into <code>{
@link
#showBusy}</code>.
*/
busyIconCls :
'x-status-busy'
,
/**
*
@cfg
{String} busyText
* The
default
<code>{
@link
#text}</code> applied when calling
* <code>{
@link
#showBusy}</code> (defaults to <tt>'Loading...'</tt>).
* It can be overridden at any
time
by passing the <code>text</code>
* argument into <code>{
@link
#showBusy}</code>.
*/
busyText :
'Loading...'
,
/**
*
@cfg
{Number} autoClear
* The number of milliseconds to
wait
after
setting the status via
* <code>{
@link
#setStatus}</code> before automatically clearing the status
* text and icon (defaults to <tt>5000</tt>). Note that this only applies
*
when
passing the <tt>clear</tt> argument to <code>{
@link
#setStatus}</code>
* since that is the only way to defer clearing the status. This can
* be overridden by specifying a different <tt>
wait
</tt> value in
* <code>{
@link
#setStatus}</code>. Calls to <code>{@link #clearStatus}</code>
* always clear the status bar immediately and ignore this value.
share/examples/ux/ux-all-debug.js view on Meta::CPAN
90779078907990809081908290839084908590869087908890899090909190929093909490959096909790989099910091019102910391049105910691079108910991109111
this.currIconCls = cls;
}
}
else
{
this.currIconCls = cls;
}
return
this;
},
/**
* Convenience method
for
setting the status text and icon to special
values
that are pre-configured to indicate
* a
"busy"
state, usually
for
loading or processing activities.
*
@param
{Object/String} config (optional) A config object in the same
format
supported by {
@link
#setStatus}, or a
* string to
use
as the status text (in which case all other options
for
setStatus will be defaulted). Use the
* <tt>text</tt> and/or <tt>iconCls</tt> properties on the config to
override
the
default
{
@link
#busyText}
* and {
@link
#busyIconCls} settings. If the config argument is not specified, {@link #busyText} and
* {
@link
#busyIconCls} will be used in conjunction with all of the default options for {@link #setStatus}.
*
@return
{Ext.ux.StatusBar} this
*/
showBusy : function(o){
if
(typeof o ==
'string'
){
o = {text:o};
}
o = Ext.applyIf(o || {}, {
text: this.busyText,
iconCls: this.busyIconCls
});
return
this.setStatus(o);
}
});
Ext.reg(
'statusbar'
, Ext.ux.StatusBar);
/**
*
@class
Ext.ux.TabCloseMenu
*
@extends
Object
* Plugin (ptype =
'tabclosemenu'
)
for
adding a
close
context menu to tabs. Note that the menu respects
* the closable configuration on the tab. As such, commands like remove others and remove all will not
share/examples/ux/ux-all.js view on Meta::CPAN
1112131415161718192021packaging of this file.
Please review the following information to ensure the GNU General Public License version 3.0
requirements will be met: http://www.gnu.org/copyleft/gpl.html.
If you are unsure which license is appropriate
for
your
use
, please contact the sales department
Build date: 2013-04-03 15:07:25
*/
Ext.ns(
"Ext.ux.grid"
);Ext.ux.grid.BufferView=Ext.extend(Ext.grid.GridView,{rowHeight:19,borderHeight:2,scrollDelay:100,cacheSize:20,cleanDelay:500,initTemplates:function(){Ext.ux.grid.BufferView.superclass.initTemplates.call(this);var a=this.template...
share/resources/css/theme-access/toolbar.css view on Meta::CPAN
118119120121122123124125126127128129130131132133134}
.x-paging-info {
color:
#444;
}
.x-toolbar-more-icon {
background-image: url(../images/access/toolbar/more.gif) !important;
}
.x-statusbar .x-status-busy {
background-image: url(../images/access/grid/loading.gif);
}
.x-statusbar .x-status-text-panel {
border-color:
#99bbe8 #fff #fff #99bbe8;
}
share/resources/css/xtheme-access.css view on Meta::CPAN
605606607608609610611612613614615616617618619620621622623624625}
.x-paging-info {
color:
#444;
}
.x-toolbar-more-icon {
background-image: url(../images/access/toolbar/more.gif) !important;
}
.x-statusbar .x-status-busy {
background-image: url(../images/access/grid/loading.gif);
}
.x-statusbar .x-status-text-panel {
border-color:
#99bbe8 #fff #fff #99bbe8;
}
.x-resizable-handle {
background-color:
#fff;
color:
#000;
}