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

META-INF.resources.modules.sys.dictionary.ctrl.dictionary.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 DictionaryAdd = require('../ctrl/dictionary.add');
	
	var RoleInfoEdit = DictionaryAdd.extend(function() {
		var _self = this;
		
		// @override
		this.load = function(panel, data) {
					
			var form = panel.find('form');
			
			Core.ajax(Config.ContextPath+this.url+data.catalogCode, {
				method: 'get'
			}).then(function(data) {
				_self.data = $.extend(_self.object, data);
				form.form('disableValidation')
					.form('load', data)
					.form('readonly', 'catalogCode')
					.form('focus');
				
				// 初始化字段描述
				_self.initPropertyFields(panel, data.fieldDesc);
			});
			
			
		};
		
		// @overload
		this.submit = function(panel, data, closeCallback) {
			var form = panel.find('form');
			
			// 开启校验
			form.form('enableValidation');
			var isValid = form.form('validate');
			
			if (isValid) {
				form.form('ajax', {
					url: Config.ContextPath + this.url + data.catalogCode,
					method: 'put',
					// 字段描述值需要特殊引入
					data: $.extend({}, this.data, {
						fieldDesc: this.stringifyFieldDesc(panel)
					})
				}).then(closeCallback);
			}
			
			return false;
		};
	});
	
	return RoleInfoEdit;
});




© 2015 - 2024 Weber Informatics LLC | Privacy Policy