Page Menu
Home
Code
Search
Configure Global Search
Log In
Files
F948332
Wizard.js
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Flag For Later
Size
4 KB
Subscribers
None
Wizard.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
[
"dojox.widget.Wizard"
]){
dojo
.
_hasResource
[
"dojox.widget.Wizard"
]
=
true
;
dojo
.
provide
(
"dojox.widget.Wizard"
);
dojo
.
require
(
"dijit.layout.StackContainer"
);
dojo
.
require
(
"dijit.layout.ContentPane"
);
dojo
.
require
(
"dijit.form.Button"
);
dojo
.
require
(
"dojo.i18n"
);
dojo
.
requireLocalization
(
"dijit"
,
"common"
,
null
,
"ROOT,ar,ca,cs,da,de,el,es,fi,fr,he,hu,it,ja,ko,nb,nl,pl,pt,pt-pt,ru,sk,sl,sv,th,tr,zh,zh-tw"
);
dojo
.
requireLocalization
(
"dojox.widget"
,
"Wizard"
,
null
,
"ROOT,ar,ca,cs,da,de,el,es,fi,fr,he,hu,it,ja,ko,nb,nl,pl,pt,pt-pt,ru,sk,sl,sv,th,tr,zh,zh-tw"
);
dojo
.
declare
(
"dojox.widget.Wizard"
,[
dijit
.
layout
.
StackContainer
,
dijit
.
_Templated
],{
widgetsInTemplate
:
true
,
templateString
:
dojo
.
cache
(
"dojox.widget"
,
"Wizard/Wizard.html"
,
"<div class=\"dojoxWizard\" dojoAttachPoint=\"wizardNode\">\n <div class=\"dojoxWizardContainer\" dojoAttachPoint=\"containerNode\"></div>\n <div class=\"dojoxWizardButtons\" dojoAttachPoint=\"wizardNav\">\n <button dojoType=\"dijit.form.Button\" type=\"button\" dojoAttachPoint=\"previousButton\">${previousButtonLabel}</button>\n <button dojoType=\"dijit.form.Button\" type=\"button\" dojoAttachPoint=\"nextButton\">${nextButtonLabel}</button>\n <button dojoType=\"dijit.form.Button\" type=\"button\" dojoAttachPoint=\"doneButton\" style=\"display:none\">${doneButtonLabel}</button>\n <button dojoType=\"dijit.form.Button\" type=\"button\" dojoAttachPoint=\"cancelButton\">${cancelButtonLabel}</button>\n </div>\n</div>\n"
),
nextButtonLabel
:
""
,
previousButtonLabel
:
""
,
cancelButtonLabel
:
""
,
doneButtonLabel
:
""
,
cancelFunction
:
null
,
hideDisabled
:
false
,
postMixInProperties
:
function
(){
this
.
inherited
(
arguments
);
var
_1
=
dojo
.
mixin
({
cancel
:
dojo
.
i18n
.
getLocalization
(
"dijit"
,
"common"
,
this
.
lang
).
buttonCancel
},
dojo
.
i18n
.
getLocalization
(
"dojox.widget"
,
"Wizard"
,
this
.
lang
));
var
_2
;
for
(
_2
in
_1
){
if
(
!
this
[
_2
+
"ButtonLabel"
]){
this
[
_2
+
"ButtonLabel"
]
=
_1
[
_2
];
}
}
},
startup
:
function
(){
if
(
this
.
_started
){
return
;
}
this
.
inherited
(
arguments
);
this
.
connect
(
this
.
nextButton
,
"onClick"
,
"_forward"
);
this
.
connect
(
this
.
previousButton
,
"onClick"
,
"back"
);
if
(
this
.
cancelFunction
){
if
(
dojo
.
isString
(
this
.
cancelFunction
)){
this
.
cancelFunction
=
dojo
.
getObject
(
this
.
cancelFunction
);
}
this
.
connect
(
this
.
cancelButton
,
"onClick"
,
this
.
cancelFunction
);
}
else
{
this
.
cancelButton
.
domNode
.
style
.
display
=
"none"
;
}
this
.
connect
(
this
.
doneButton
,
"onClick"
,
"done"
);
this
.
_subscription
=
dojo
.
subscribe
(
this
.
id
+
"-selectChild"
,
dojo
.
hitch
(
this
,
"_checkButtons"
));
this
.
_checkButtons
();
this
.
_started
=
true
;
},
_checkButtons
:
function
(){
var
sw
=
this
.
selectedChildWidget
;
var
_3
=
sw
.
isLastChild
;
this
.
nextButton
.
attr
(
"disabled"
,
_3
);
this
.
_setButtonClass
(
this
.
nextButton
);
if
(
sw
.
doneFunction
){
this
.
doneButton
.
domNode
.
style
.
display
=
""
;
if
(
_3
){
this
.
nextButton
.
domNode
.
style
.
display
=
"none"
;
}
}
else
{
this
.
doneButton
.
domNode
.
style
.
display
=
"none"
;
}
this
.
previousButton
.
attr
(
"disabled"
,
!
this
.
selectedChildWidget
.
canGoBack
);
this
.
_setButtonClass
(
this
.
previousButton
);
},
_setButtonClass
:
function
(
_4
){
_4
.
domNode
.
style
.
display
=
(
this
.
hideDisabled
&&
_4
.
disabled
)
?
"none"
:
""
;
},
_forward
:
function
(){
if
(
this
.
selectedChildWidget
.
_checkPass
()){
this
.
forward
();
}
},
done
:
function
(){
this
.
selectedChildWidget
.
done
();
},
destroy
:
function
(){
dojo
.
unsubscribe
(
this
.
_subscription
);
this
.
inherited
(
arguments
);
}});
dojo
.
declare
(
"dojox.widget.WizardPane"
,
dijit
.
layout
.
ContentPane
,{
canGoBack
:
true
,
passFunction
:
null
,
doneFunction
:
null
,
startup
:
function
(){
this
.
inherited
(
arguments
);
if
(
this
.
isFirstChild
){
this
.
canGoBack
=
false
;
}
if
(
dojo
.
isString
(
this
.
passFunction
)){
this
.
passFunction
=
dojo
.
getObject
(
this
.
passFunction
);
}
if
(
dojo
.
isString
(
this
.
doneFunction
)
&&
this
.
doneFunction
){
this
.
doneFunction
=
dojo
.
getObject
(
this
.
doneFunction
);
}
},
_onShow
:
function
(){
if
(
this
.
isFirstChild
){
this
.
canGoBack
=
false
;
}
this
.
inherited
(
arguments
);
},
_checkPass
:
function
(){
var
r
=
true
;
if
(
this
.
passFunction
&&
dojo
.
isFunction
(
this
.
passFunction
)){
var
_5
=
this
.
passFunction
();
switch
(
typeof
_5
){
case
"boolean"
:
r
=
_5
;
break
;
case
"string"
:
alert
(
_5
);
r
=
false
;
break
;
}
}
return
r
;
},
done
:
function
(){
if
(
this
.
doneFunction
&&
dojo
.
isFunction
(
this
.
doneFunction
)){
this
.
doneFunction
();
}
}});
}
File Metadata
Details
Attached
Mime Type
text/plain
Expires
Sat, Apr 26, 15:51 (6 h, 18 s ago)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
26308
Default Alt Text
Wizard.js (4 KB)
Attached To
rZEDHG ZedLegacy
Event Timeline
Log In to Comment