SaleHelpDetail.js 870 B

12345678910111213141516171819202122
  1. Ext.define('erp.view.sys.sale.SaleHelpDetail', {
  2. extend: 'Ext.panel.Panel',
  3. alias: 'widget.salehelpdetail',
  4. tplMarkup: [
  5. '<b>{first_name}&nbsp;{last_name}</b>&nbsp;&nbsp;',
  6. 'Title: {title}<br/><br/>',
  7. '<b>Last Review</b>&nbsp;&nbsp;',
  8. 'Attendance:&nbsp;{attendance}&nbsp;&nbsp;',
  9. 'Attitude:&nbsp;{attitude}&nbsp;&nbsp;',
  10. 'Communication:&nbsp;{communication}&nbsp;&nbsp;',
  11. 'Excellence:&nbsp;{excellence}&nbsp;&nbsp;',
  12. 'Skills:&nbsp;{skills}&nbsp;&nbsp;',
  13. 'Teamwork:&nbsp;{teamwork}'
  14. ],
  15. height:90,
  16. bodyPadding: 7,
  17. initComponent: function() {
  18. this.tpl = new Ext.Template(this.tplMarkup);
  19. erp.view.sys.sale.SaleHelpDetail.superclass.initComponent.call(this);
  20. }
  21. });