Sha256: d6358d88d80566484c8b69ba2d5e05a5174323df87cf3fde0a0a9201236db384

Contents?: true

Size: 830 Bytes

Versions: 25

Compression:

Stored size: 830 Bytes

Contents

{
  layout: 'fit',

  initComponent: function(){
    this.callParent();

    // set the move and resize events after window is shown, so that they don't fire at initial rendering
    if (this.persistence) {
      this.on("show", function(){
        this.on("move", this.onMoveResize, this);
        this.on("resize", this.onMoveResize, this);
        this.on("maximize", Ext.Function.pass(this.onMaximize, [true]), this);
        this.on("restore", Ext.Function.pass(this.onMaximize, [false]), this);
      }, this);
    }
  },

  onMoveResize: function(){
    var x = this.getPosition()[0], y = this.getPosition()[1], w = this.getSize().width, h = this.getSize().height;
    this.setSizeAndPosition({x: x, y: y, width: w, height: h}); // API call
  },

  onMaximize: function(maximized) {
    this.setMaximized(maximized);
  }
}

Version data entries

25 entries across 25 versions & 1 rubygems

Version Path
netzke-basepack-0.12.9 lib/netzke/basepack/window/javascripts/window.js
netzke-basepack-0.12.8 lib/netzke/basepack/window/javascripts/window.js
netzke-basepack-0.12.7 lib/netzke/basepack/window/javascripts/window.js
netzke-basepack-0.12.6 lib/netzke/basepack/window/javascripts/window.js
netzke-basepack-0.12.5 lib/netzke/basepack/window/javascripts/window.js
netzke-basepack-0.12.4 lib/netzke/basepack/window/javascripts/window.js
netzke-basepack-0.12.3 lib/netzke/basepack/window/javascripts/window.js
netzke-basepack-0.12.2 lib/netzke/basepack/window/javascripts/window.js
netzke-basepack-0.12.1 lib/netzke/basepack/window/javascripts/window.js
netzke-basepack-0.11.2 lib/netzke/basepack/window/javascripts/window.js
netzke-basepack-0.11.1 lib/netzke/basepack/window/javascripts/window.js
netzke-basepack-0.12.0 lib/netzke/basepack/window/javascripts/window.js
netzke-basepack-0.12.0.rc1 lib/netzke/basepack/window/javascripts/window.js
netzke-basepack-0.12.0.beta lib/netzke/basepack/window/javascripts/window.js
netzke-basepack-0.11.0 lib/netzke/basepack/window/javascripts/window.js
netzke-basepack-0.10.1 lib/netzke/basepack/window/javascripts/window.js
netzke-basepack-0.10.0 lib/netzke/basepack/window/javascripts/window.js
netzke-basepack-0.9.0 lib/netzke/basepack/window/javascripts/window.js
netzke-basepack-0.10.0.rc2 lib/netzke/basepack/window/javascripts/window.js
netzke-basepack-0.9.0.rc1 lib/netzke/basepack/window/javascripts/window.js