| 1234567891011121314151617181920212223242526272829303132 |
- Ext.define('erp.view.fa.gla.UnWriteVoucher', {
- extend: 'Ext.Viewport',
- layout: 'anchor',
- hideBorders: true,
- initComponent : function(){
- var me = this;
- Ext.apply(me, {
- items: [{
- anchor: '100% 10%',
- xtype: 'toolbar',
- items: ['期间:', {
- xtype: 'tbtext',
- id: 'yearmonth'
- },'->', {
- xtype: 'erpResAccountedButton'
- },'-',{
- text: $I18N.common.button.erpCloseButton,
- iconCls: 'x-button-icon-close',
- cls: 'x-btn-gray',
- handler: function(){
- var main = parent.Ext.getCmp("content-panel");
- main.getActiveTab().close();
- }
- }]
- },{
- anchor: '100% 90%',
- xtype: 'erpGridPanel2'
- }]
- });
- me.callParent(arguments);
- }
- });
|