12345678910111213141516171819202122 |
- Ext.define('erp.view.sys.sale.SaleHelpDetail', {
- extend: 'Ext.panel.Panel',
- alias: 'widget.salehelpdetail',
- tplMarkup: [
- '<b>{first_name} {last_name}</b> ',
- 'Title: {title}<br/><br/>',
- '<b>Last Review</b> ',
- 'Attendance: {attendance} ',
- 'Attitude: {attitude} ',
- 'Communication: {communication} ',
- 'Excellence: {excellence} ',
- 'Skills: {skills} ',
- 'Teamwork: {teamwork}'
- ],
-
- height:90,
- bodyPadding: 7,
- initComponent: function() {
- this.tpl = new Ext.Template(this.tplMarkup);
- erp.view.sys.sale.SaleHelpDetail.superclass.initComponent.call(this);
- }
- });
|