SAMPDataPanel.js 621 Bytes
Ext.define('treps.view.Steps.SourceSelection.SAMPDataPanel' ,{
	extend: 'Ext.form.Panel',

	alias: 'widget.sampdata_panel',

	requires: [
		'treps.view.SAMP.SAMPConnectButton',
		'treps.view.SAMP.SAMPClientsDataView'
	],

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

	autoScroll : true,

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

	items: [
		{
			xtype: 'tool',
			type: 'help',
			cls:'treps-tool-help',
			pageId: 'samp'
		},
		{
			xtype: 'sampconnect_button',
			margin: 5
		},
		{
			xtype: 'sampclients_dataview'
		}
	]
});