0byt3m1n1
Path:
/
data
/
applications
/
aps
/
magento
/
1.1.3-2
/
standard
/
htdocs
/
js
/
mage
/
adminhtml
/
[
Home
]
File: form.js
/** * Magento * * NOTICE OF LICENSE * * This source file is subject to the Open Software License (OSL 3.0) * that is bundled with this package in the file LICENSE.txt. * It is also available through the world-wide-web at this URL: * http://opensource.org/licenses/osl-3.0.php * If you did not receive a copy of the license and are unable to * obtain it through the world-wide-web, please send an email * to license@magentocommerce.com so we can send you a copy immediately. * * @copyright Copyright (c) 2008 Irubin Consulting Inc. DBA Varien (http://www.varien.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ var varienForm = new Class.create(); varienForm.prototype = { initialize : function(formId, validationUrl){ this.formId = formId; this.validationUrl = validationUrl; this.submitUrl = false; if($(this.formId)){ this.validator = new Validation(this.formId, {onElementValidate : this.checkErrors.bind(this)}); } this.errorSections = new Hash(); }, checkErrors : function(result, elm){ if(!result) elm.setHasError(true, this); else elm.setHasError(false, this); }, submit : function(url){ this.errorSections = new Hash(); this.canShowError = true; this.submitUrl = url; if(this.validator && this.validator.validate()){ if(this.validationUrl){ this._validate(); } else{ this._submit(); } return true; } return false; }, _validate : function(){ new Ajax.Request(this.validationUrl,{ method: 'post', parameters: $(this.formId).serialize(), onComplete: this._processValidationResult.bind(this), onFailure: this._processFailure.bind(this) }); }, _processValidationResult : function(transport){ var response = transport.responseText.evalJSON(); if(response.error){ if($('messages')){ $('messages').innerHTML = response.message; } } else{ this._submit(); } }, _processFailure : function(transport){ location.href = BASE_URL; }, _submit : function(){ if(this.submitUrl){ $(this.formId).action = this.submitUrl; } $(this.formId).submit(); } } /** * redeclare Validation.isVisible function * * use for not visible elements validation */ Validation.isVisible = function(elm){ while (elm && elm.tagName != 'BODY') { if (elm.disabled) return false; if ((Element.hasClassName(elm, 'template') && Element.hasClassName(elm, 'no-display')) || Element.hasClassName(elm, 'ignore-validate')){ return false; } elm = elm.parentNode; } return true; } /** * Additional elements methods */ var varienElementMethods = { setHasChanges : function(element, event){ if($(element).hasClassName('no-changes')) return; var elm = element; while(elm && elm.tagName != 'BODY') { if(elm.statusBar) Element.addClassName($(elm.statusBar), 'changed') elm = elm.parentNode; } }, setHasError : function(element, flag, form){ var elm = element; while(elm && elm.tagName != 'BODY') { if(elm.statusBar){ if(form.errorSections.keys().indexOf(elm.statusBar.id)<0) form.errorSections[elm.statusBar.id] = flag; if(flag){ Element.addClassName($(elm.statusBar), 'error'); if(form.canShowError && $(elm.statusBar).show){ form.canShowError = false; $(elm.statusBar).show(); } form.errorSections[elm.statusBar.id] = flag; } else if(!form.errorSections[elm.statusBar.id]){ Element.removeClassName($(elm.statusBar), 'error') } } elm = elm.parentNode; } this.canShowElement = false; } } Element.addMethods(varienElementMethods); // Global bind changes varienWindowOnloadCache = {}; function varienWindowOnload(useCache){ var dataElements = $$('input', 'select', 'textarea'); for(var i=0; i<dataElements.length;i++){ if(dataElements[i] && dataElements[i].id){ if ((!useCache) || (!varienWindowOnloadCache[dataElements[i].id])) { Event.observe(dataElements[i], 'change', dataElements[i].setHasChanges.bind(dataElements[i])); if (useCache) { varienWindowOnloadCache[dataElements[i].id] = true; } } } } } Event.observe(window, 'load', varienWindowOnload); RegionUpdater = Class.create(); RegionUpdater.prototype = { initialize: function (countryEl, regionTextEl, regionSelectEl, regions, disableAction) { this.countryEl = $(countryEl); this.regionTextEl = $(regionTextEl); this.regionSelectEl = $(regionSelectEl); this.regions = regions; this.disableAction = (typeof disableAction=='undefined') ? 'hide' : disableAction; if (this.regionSelectEl.options.length<=1) { this.update(); } else { this.lastCountryId = this.countryEl.value; } this.countryEl.changeUpdater = this.update.bind(this); Event.observe(this.countryEl, 'change', this.update.bind(this)); }, update: function() { if (this.regions[this.countryEl.value]) { if (this.lastCountryId!=this.countryEl.value) { var i, option, region, def; if (this.regionTextEl) { def = this.regionTextEl.value.toLowerCase(); this.regionTextEl.value = ''; } if (!def) { def = this.regionSelectEl.getAttribute('defaultValue'); } this.regionSelectEl.options.length = 1; for (regionId in this.regions[this.countryEl.value]) { region = this.regions[this.countryEl.value][regionId]; option = document.createElement('OPTION'); option.value = regionId; option.text = region.name; if (this.regionSelectEl.options.add) { this.regionSelectEl.options.add(option); } else { this.regionSelectEl.appendChild(option); } if (regionId==def || region.name.toLowerCase()==def || region.code.toLowerCase()==def) { this.regionSelectEl.value = regionId; } } } if (this.disableAction=='hide') { if (this.regionTextEl) { this.regionTextEl.style.display = 'none'; this.regionTextEl.style.disabled = true; } this.regionSelectEl.style.display = ''; this.regionSelectEl.disabled = false; } else if (this.disableAction=='disable') { if (this.regionTextEl) { this.regionTextEl.disabled = true; } this.regionSelectEl.disabled = false; } this.setMarkDisplay(this.regionSelectEl, true); this.lastCountryId = this.countryEl.value; } else { if (this.disableAction=='hide') { if (this.regionTextEl) { this.regionTextEl.style.display = ''; this.regionTextEl.style.disabled = false; } this.regionSelectEl.style.display = 'none'; this.regionSelectEl.disabled = true; } else if (this.disableAction=='disable') { if (this.regionTextEl) { this.regionTextEl.disabled = false; } this.regionSelectEl.disabled = true; } else if (this.disableAction=='nullify') { this.regionSelectEl.options.length = 1; this.regionSelectEl.value = ''; this.regionSelectEl.selectedIndex = 0; this.lastCountryId = ''; } this.setMarkDisplay(this.regionSelectEl, false); } }, setMarkDisplay: function(elem, display){ if(elem.parentNode.parentNode){ var marks = Element.getElementsByClassName(elem.parentNode.parentNode, 'required'); if(marks[0]){ display ? marks[0].show() : marks[0].hide(); } } } } regionUpdater = RegionUpdater; /** * Fix errorrs in IE */ Event.pointerX = function(event){ try{ return event.pageX || (event.clientX +(document.documentElement.scrollLeft || document.body.scrollLeft)); } catch(e){ } } Event.pointerY = function(event){ try{ return event.pageY || (event.clientY +(document.documentElement.scrollTop || document.body.scrollTop)); } catch(e){ } } SelectUpdater = Class.create(); SelectUpdater.prototype = { initialize: function (firstSelect, secondSelect, selectFirstMessage, noValuesMessage, values, selected) { this.first = $(firstSelect); this.second = $(secondSelect); this.message = selectFirstMessage; this.values = values; this.noMessage = noValuesMessage; this.selected = selected; this.update(); Event.observe(this.first, 'change', this.update.bind(this)); }, update: function() { this.second.length = 0; this.second.value = ''; if (this.first.value && this.values[this.first.value]) { for (optionValue in this.values[this.first.value]) { optionTitle = this.values[this.first.value][optionValue]; this.addOption(this.second, optionValue, optionTitle); } this.second.disabled = false; } else if (this.first.value && !this.values[this.first.value]) { this.addOption(this.second, '', this.noMessage); } else { this.addOption(this.second, '', this.message); this.second.disabled = true; } }, addOption: function(select, value, text) { option = document.createElement('OPTION'); option.value = value; option.text = text; if (this.selected && option.value == this.selected) { option.selected = true; this.selected = false; } if (select.options.add) { select.options.add(option); } else { select.appendChild(option); } } }