All Downloads are FREE. Search and download functionalities are using the official Maven repository.

META-INF.resources.modules.sys.deptpow.ctrl.deptpow.edit.js Maven / Gradle / Ivy

There is a newer version: 5.0.2101
Show newest version
define(function(require) {
	var Config = require('config');
	var Core = require('core/core');
	var DeptPowAdd = require('../ctrl/deptpow.add');
	
	var DeptPowEdit = DeptPowAdd.extend(function() {
		var _self = this;
		
		// @override
		this.load = function(panel, data) {
			var form = panel.find('form');
			Core.ajax(Config.ContextPath+'system/unitinfo/'+data.unitCode, {
				type: 'json',
				method: 'get'
			}).then(function(data) {
				_self.data = data;
				
				form.form('disableValidation')
					.form('load', data)
					.form('focus');
				
			});
			
		};
		
		// @override
		this.submit = function(panel, data,closeCallback) {
			var form = panel.find('form');
			form.form('enableValidation');
			var isValid = form.form('validate');
			if (isValid) {
				this.newObject = form.form('value');
				data._method = 'PUT';
			
				form.form('ajax', {
					data: data,
					url: Config.ContextPath + 'system/unitinfo/' + data.unitCode,
					method: 'put'
				}).then(function(data){
					
					closeCallback();
				});
			}
			
			return false;
		};
		
		// @override
		this.onClose = function(table, data) {
			var newObject =this.newObject;
			if(!newObject)return ;
			table.treegrid('reload');
			this.newObject=null;
        };
	});
	
	return DeptPowEdit;
});




© 2015 - 2024 Weber Informatics LLC | Privacy Policy