ChangeDate.js 389 B

12345678910111213141516
  1. Ext.define('erp.view.core.button.ChangeDate',{
  2. extend: 'Ext.Button',
  3. alias: 'widget.erpChangeDateButton',
  4. param: [],
  5. text: $I18N.common.button.erpChangeDateButton,
  6. iconCls: 'x-button-icon-submit',
  7. id:'changedate',
  8. cls: 'x-btn-gray',
  9. width: 90,
  10. style: {
  11. marginLeft: '10px'
  12. },
  13. initComponent : function(){
  14. this.callParent(arguments);
  15. }
  16. });