in cloud-vmware-server/src/main/resources/buildServerResources/vmware-settings.js [57:88]
fetchOptions: $j('.fetchingServerOptions'),
fetchSnapshots: $j('.fetchingSnapshots')
};
this._lastImageId = this._imagesDataLength = 0;
this._initImage();
this.$cloneOptions.toggleClass('hidden', !this._isClone());
this._displaySnapshotSelect();
this._toggleDialogShowButton();
this._toggleEditLinks();
this.validateServerSettings() && this.fetchOptions();
this._initImagesData();
this._bindHandlers();
this._disableCheckModifiedForDialog();
this.renderImagesTable();
},
_disableCheckModifiedForDialog: function(){
$j('.paramsTable input').
add($j('#realImageInput')).
add($j('.paramsTable select')).addClass('ignoreModified');
},
_fetchOptionsInProgress: function () {
return this.fetchOptionsDeferred ?
this.fetchOptionsDeferred.state() === 'pending' :
false;
},
fetchOptions: function () {
var $loader = $j('.options-loader');
if ( this._fetchOptionsInProgress() || !this.validateServerSettings()) {