IBM WebSphere Multichannel Bank Transformation Toolkit, Version 7.1

Sample xui.xml file

Here is the sample of xui.xml:

<?xml version="1.0" encoding="UTF-8"?>
<!-- *_
	* Licensed Material - Property of IBM
	* (C) Copyright IBM Corp. 2008, 2008 - All Rights Reserved
	* US Government Users Restricted Rights - Use, duplication or disclosure
	* restricted by GSA ADP Schedule Contract with IBM Corp.
	* 
	* DISCLAIMER:
	* The following [enclosed] code is sample code created by IBM
	* Corporation. This sample code is not part of any standard IBM product
	* and is provided to you solely for the purpose of assisting you in the
	* development of your applications. The code is provided 'AS IS',
	* without warranty of any kind. IBM shall not be liable for any damages
	* arising out of your use of the sample code, even if they have been
	* advised of the possibility of such damages.
	*/-->
<XUI>
	<Composite bounds="32,10,625,502" id="chooseCardComposite">
		<Label bounds="38,33,492,29" text="The cards"
			font="arial,15,NORMAL" background="0,128,192"
			foreground="255,255,255" alignment="CENTER">
		</Label>
		<Label bounds="31,69,531,69"
			text="The Demo Bank family of credit cards has something for every need and every interest. Each card has a unique mix of features and benefits. Click on a card below for more information on it."
			wrap="true" font="arial,11,NORMAL">
		</Label>
		<Group bounds="35,278,488,55" dataName="selectedCard"
			required="true">

			<RadioButton bounds="188,19,132,20" text="The Classic Card "
				value="Classic" selection="true">
			</RadioButton>
			<RadioButton bounds="344,19,132,20"
				text="The Universal Card " value="Universal">
			</RadioButton>

			<RadioButton bounds="14,19,142,20" text="The Platinum Card "
				value="Platinum">
			</RadioButton>
			<RadioButton bounds="188,19,132,20" text="The Classic Card "
				value="Classic">
			</RadioButton>
			<RadioButton bounds="344,19,132,20"
				text="The Universal Card " value="Universal">
			</RadioButton>
		</Group>
		<Group bounds="36,348,504,89" dataName="dse_nextEventName">
			<RadioButton bounds="11,17,404,20"
				text="Continue processing application with my credit card selection"
				value="ok" selection="true">
			</RadioButton>
			<RadioButton bounds="11,57,404,20"
				text="Cancel Application " value="cancel">
			</RadioButton>
		</Group>
		<Button bounds="223,457,108,27" text="Continue"
			disableInError="true">
			<list Injection="actions">
				<com.ibm.btt.rcp.sample.action.SampleEventAction></com.ibm.btt.rcp.sample.action.SampleEventAction>
			</list>
		</Button>

		<Label bounds="42,145,150,124"
			image="icons/cards/logo_platcrd.jpg">
		</Label>
		<Label bounds="218,149,134,120"
			image="icons/cards/logo_disclassic.jpg">
		</Label>
		<Label bounds="384,148,133,121"
			image="icons/cards/logo_univcrd.jpg">
		</Label>
	</Composite>
</XUI>



Feedback