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

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

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

  var UserInfoUnitAdd = require('../ctrl/userinfo.unit.add');
  var UserInfoUnitEdit = require('../ctrl/userinfo.unit.edit');
  var UserInfoUnitRemove = require('../ctrl/userinfo.unit.remove');

  return Page.extend(function () {
    var _self = this;

    this.injecte([
      new UserInfoUnitAdd('userinfo_unit_add'),
      new UserInfoUnitEdit('userinfo_unit_edit'),
      new UserInfoUnitRemove('userinfo_unit_remove')
    ]);

    // @override
    this.load = function (panel, data) {
      this.data = data;

      var table = this.table = panel.find('table');
      table.cdatagrid({
        controller: _self,
        url: Config.ContextPath + 'system/userunit/userunits/' + data.userCode
      })
    };
  });
});




© 2015 - 2024 Weber Informatics LLC | Privacy Policy