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

META-INF.resources.modules.sys.optinfo.ctrl.optinfo.optdef.add.js Maven / Gradle / Ivy

There is a newer version: 5.0.2101
Show newest version
define(function(require) {
	var Page = require('core/page');

	var OptDefAdd = Page.extend(function() {

		// @override
		this.object = {
			optReq : 'R'
		};

		// @override
		this.submit = function(panel, data) {
			var table = this.parent.panel.find('#optdef');

			if (!table.cdatagrid('endEdit')) {
				return;
			}

			// 插入新数据
			table.datagrid('appendRow', $.extend({}, this.object));

			var index = table.datagrid('getRows').length - 1;
			table.datagrid('selectRow', index);

			// 开启编辑
			table.cdatagrid('beginEdit', index, 'dataCode');
		};
	});

	return OptDefAdd;
});




© 2015 - 2024 Weber Informatics LLC | Privacy Policy