TestSQL.js 303 B

123456789101112131415
  1. /**
  2. * SQL生成器通用按钮设置
  3. */
  4. Ext.define('erp.view.core.button.TestSQL', {
  5. extend : 'Ext.Button',
  6. alias : 'widget.erpSQLButton',
  7. cls : 'x-btn-gray-1',
  8. style : {
  9. marginLeft : '1px'
  10. },
  11. width : 60,
  12. initComponent : function() {
  13. this.callParent(arguments);
  14. }
  15. });