286cb7c4be
git-svn-id: https://svn.code.sf.net/p/xcat/code/xcat-core/trunk@2456 8638fb3e-16cb-4fca-ae20-7b5d299a9bcd
64 lines
2.1 KiB
JavaScript
64 lines
2.1 KiB
JavaScript
// Javascript functions for wizards
|
|
|
|
window.wizardProps = {}; // global var to hold properties we are collecting
|
|
|
|
function wizardNext() {
|
|
window.wizardProps = { page: window.currentPage, action: 'next'};
|
|
addFormValues();
|
|
$("#wizardPane").load("?a=1", window.wizardProps);
|
|
}
|
|
|
|
function wizardBack() {
|
|
window.wizardProps = { page: window.currentPage, action: 'back'};
|
|
addFormValues();
|
|
$("#wizardPane").load("?a=1", window.wizardProps);
|
|
}
|
|
|
|
function wizardCancel() {
|
|
var props = { page: 0, action: 'cancel'};
|
|
$("#wizardPane").load("?a=1", props);
|
|
}
|
|
|
|
|
|
// Repeatedly make a json call to the server until it tells us there are no more steps
|
|
function wizardStep(step, done, error) {
|
|
//todo: handle errors
|
|
// Mark the previous step as complete
|
|
if (step > 1) {
|
|
var prevstep = step -1;
|
|
$(".WizardProgressTable #step"+prevstep).removeClass("WizardProgressCurrent");
|
|
$(".WizardProgressTable #step"+prevstep+" #chk").attr('src','../images/checked-box.gif');
|
|
//$(".WizardProgressTable #step"+prevstep+" #spinner").hide();
|
|
$(".WizardProgressTable #step"+prevstep+" #spinner").attr('src', '../images/invisible.gif');
|
|
}
|
|
|
|
if (done) { return; }
|
|
//alert('here');
|
|
|
|
// Make the current item bold
|
|
$(".WizardProgressTable #step"+step).addClass("WizardProgressCurrent");
|
|
//$(".WizardProgressTable #step"+step).append("<img id=spinner src='../images/throbber.gif'/>");
|
|
$(".WizardProgressTable #step"+step+" #spinner").attr('src', '../images/throbber.gif');
|
|
|
|
// Do the next step
|
|
var props = { page: window.currentPage, action: 'step', step: step };
|
|
//alert('props page:'+props.page+ ' action:'+props.action+' step:'+props.step);
|
|
|
|
//jQuery.getJSON('?page='+window.currentPage+'&action=step&step='+step, {}, function(json) {
|
|
jQuery.post('?a=1', props, function(json, textStatus) {
|
|
wizardStep(json.step, json.done, json.error);
|
|
}, 'json');
|
|
}
|
|
|
|
|
|
// Get the values from all of the form elements in this page of the wizard and add
|
|
// it to wizardProps.
|
|
function addFormValues() {
|
|
$("#wizardPane INPUT[type='text']").each(function (i) {
|
|
window.wizardProps[this.id] = this.value;
|
|
});
|
|
$("#wizardPane INPUT[type='checkbox']").each(function (i) {
|
|
window.wizardProps[this.id] = this.checked ? 1 : 0;
|
|
});
|
|
}
|