ExportResultPanel.js 818 Bytes
Ext.define('treps.view.Steps.ExportResult.ExportResultPanel' ,{
	extend: 'Ext.form.Panel',
	
	alias: 'widget.exportresult_panel',
	
	requires: [
		'treps.view.SAMP.SAMPSendToClientButton'
	],

	initComponent: function() {
		this.callParent(arguments);
	},

	tools: [
		{
			type: 'help',
			pageId: 'export'
		}
	],

	layout: {
		type: 'vbox',
		padding: 5,
		margin: 5,
		align: 'stretch'
	},

	items : [
		{
			xtype: 'button',
			id: 'downloadBtn',
			scale: 'large',
			iconCls: 'icons-24x24-download',
			text: 'Download the exported file',
			margin: 5,
			width: 300,
			menu: []
		},
		{
			xtype: 'tool',
			type: 'help',
			cls:'treps-tool-help',
			pageId: 'samp'
		},
		{
			xtype: 'sampsend_button',
			margin: 5,
			width : 300
                }
	]
});