Page Menu
Home
Code
Search
Configure Global Search
Log In
Files
F948414
ProgressBar.js
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Flag For Later
Size
2 KB
Subscribers
None
ProgressBar.js
View Options
/*
Copyright (c) 2004-2009, The Dojo Foundation All Rights Reserved.
Available via Academic Free License >= 2.1 OR the modified BSD license.
see: http://dojotoolkit.org/license for details
*/
if
(
!
dojo
.
_hasResource
[
"dijit.ProgressBar"
]){
dojo
.
_hasResource
[
"dijit.ProgressBar"
]
=
true
;
dojo
.
provide
(
"dijit.ProgressBar"
);
dojo
.
require
(
"dojo.fx"
);
dojo
.
require
(
"dojo.number"
);
dojo
.
require
(
"dijit._Widget"
);
dojo
.
require
(
"dijit._Templated"
);
dojo
.
declare
(
"dijit.ProgressBar"
,[
dijit
.
_Widget
,
dijit
.
_Templated
],{
progress
:
"0"
,
maximum
:
100
,
places
:
0
,
indeterminate
:
false
,
name
:
""
,
templateString
:
dojo
.
cache
(
"dijit"
,
"templates/ProgressBar.html"
,
"<div class=\"dijitProgressBar dijitProgressBarEmpty\"\n\t><div waiRole=\"progressbar\" dojoAttachPoint=\"internalProgress\" class=\"dijitProgressBarFull\"\n\t\t><div class=\"dijitProgressBarTile\"></div\n\t\t><span style=\"visibility:hidden\"> </span\n\t></div\n\t><div dojoAttachPoint=\"label\" class=\"dijitProgressBarLabel\" id=\"${id}_label\"> </div\n\t><img dojoAttachPoint=\"indeterminateHighContrastImage\" class=\"dijitProgressBarIndeterminateHighContrastImage\" alt=\"\"\n\t></img\n></div>\n"
),
_indeterminateHighContrastImagePath
:
dojo
.
moduleUrl
(
"dijit"
,
"themes/a11y/indeterminate_progress.gif"
),
postCreate
:
function
(){
this
.
inherited
(
arguments
);
this
.
indeterminateHighContrastImage
.
setAttribute
(
"src"
,
this
.
_indeterminateHighContrastImagePath
.
toString
());
this
.
update
();
},
update
:
function
(
_1
){
dojo
.
mixin
(
this
,
_1
||
{});
var
_2
=
this
.
internalProgress
;
var
_3
=
1
,
_4
;
if
(
this
.
indeterminate
){
_4
=
"addClass"
;
dijit
.
removeWaiState
(
_2
,
"valuenow"
);
dijit
.
removeWaiState
(
_2
,
"valuemin"
);
dijit
.
removeWaiState
(
_2
,
"valuemax"
);
}
else
{
_4
=
"removeClass"
;
if
(
String
(
this
.
progress
).
indexOf
(
"%"
)
!=-
1
){
_3
=
Math
.
min
(
parseFloat
(
this
.
progress
)
/
100
,
1
);
this
.
progress
=
_3
*
this
.
maximum
;
}
else
{
this
.
progress
=
Math
.
min
(
this
.
progress
,
this
.
maximum
);
_3
=
this
.
progress
/
this
.
maximum
;
}
var
_5
=
this
.
report
(
_3
);
this
.
label
.
firstChild
.
nodeValue
=
_5
;
dijit
.
setWaiState
(
_2
,
"describedby"
,
this
.
label
.
id
);
dijit
.
setWaiState
(
_2
,
"valuenow"
,
this
.
progress
);
dijit
.
setWaiState
(
_2
,
"valuemin"
,
0
);
dijit
.
setWaiState
(
_2
,
"valuemax"
,
this
.
maximum
);
}
dojo
[
_4
](
this
.
domNode
,
"dijitProgressBarIndeterminate"
);
_2
.
style
.
width
=
(
_3
*
100
)
+
"%"
;
this
.
onChange
();
},
_setValueAttr
:
function
(
v
){
if
(
v
==
Infinity
){
this
.
update
({
indeterminate
:
true
});
}
else
{
this
.
update
({
indeterminate
:
false
,
progress
:
v
});
}
},
_getValueAttr
:
function
(){
return
this
.
progress
;
},
report
:
function
(
_6
){
return
dojo
.
number
.
format
(
_6
,{
type
:
"percent"
,
places
:
this
.
places
,
locale
:
this
.
lang
});
},
onChange
:
function
(){
}});
}
File Metadata
Details
Attached
Mime Type
text/plain
Expires
Sat, Apr 26, 16:26 (5 h, 47 m ago)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
22776
Default Alt Text
ProgressBar.js (2 KB)
Attached To
rZED Zed
Event Timeline
Log In to Comment