Viewport.js 284 B

1234567891011121314
  1. Ext.define('erp.view.common.EmpDbfind.Viewport', {
  2. extend : 'Ext.Viewport',
  3. layout : 'anchor',
  4. hideBorders : true,
  5. initComponent : function() {
  6. Ext.apply(this, {
  7. items : [ {
  8. anchor : '100% 100%',
  9. xtype : 'emptreegrid'
  10. } ]
  11. });
  12. this.callParent(arguments);
  13. }
  14. });