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

META-INF.resources.modules.sys.userinfo.ctrl.userinfo.setting.add.js Maven / Gradle / Ivy

There is a newer version: 5.0.2101
Show newest version
define(function (require) {
  var Config = require('config');
  var $ = require('jquery');

  var Page = require('core/page');

  // 添加个人设置
  return Page.extend(function () {
    var _self = this;

    // @override
 /*   this.load = function (panel) {

      // 获取父窗口的用户信息
      var userInfo = this.parent.data;

      var data = this.data = $.extend({}, this.object, {
        userCode: userInfo.userCode
      });

      panel.find('form').form('disableValidation')
        .form('load', data)

    };*/

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

      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, 'paramValue');

      table.cdatagrid('endEdit', function(index){
        alert(1);
      });
    };

    /*this.submit = function (panel, data, closeCallback) {
      var form = panel.find('form');

      form.form('enableValidation');
      var isValid = form.form('validate');
      data.paramCode = panel.find('#paramCode').combobox('getValue');
      data.paramName = panel.find('#paramCode').combobox('getText');

      if (isValid) {
        form.form('ajax', {
          url: Config.ContextPath + 'system/usersetting/'+data.paramCode,
          data: data
        }).then(function () {
          return require('loaders/cache/loader.system').loadAll()
        }).then(function () {
          _self.parent.table.datagrid("reload");
          closeCallback();
        });
      }

      return false;
    };*/

  });

});




© 2015 - 2024 Weber Informatics LLC | Privacy Policy