IBM WebSphere Multichannel Bank Transformation Toolkit, Version 7.1

Configuring the default fixed window

About this task

The fixed window is always places at the right of the desktop, web developer need to configure in WebApp/WebContnet/BTTXML/DesktopFixedBoard.xml, for example:

<?xml version="1.0" encoding="UTF-8"?><FixedBoardGroup>
	<FixedBoard id="001" right="30" top="10" width="400" height="200"
title="test1">
		<Widget name="simpleHTMLWgt">
				<attribute name="url" value="http://www.ibm.com">
		</Widget>
	</FixedBoard>
	<FixedBoard id="002" right="30" top="250" width="400" height="100"title="test2">		
      <Widget name="BTTDojoHTMLCreditCardWgt">				
            <attributename="url" value="Request?&dse_applicationId=-1&dse_pageId=2&dse_operationName=creditCardsProc&dse_errorPage=menu.jsp&dse_processorState=initial&dse_nextEventName=start"/>
      </Widget>
	</FixedBoard>
	<FixedBoard id="003" right="30" width="400" height="200" title="test3"bottom="20">		
    <Widget name="BTTContainer" type="Tab" style="height:100%; width:100%">					
        <children>
					 	<Widget name="simpleHTMLWgt" title="Website">					 		
                <attributename="url" value="http://www.google.com"/>
					 		<attribute name="height" value="100%"/>
					 	</Widget>
					 	<Widget name="event_transferfromWgt" title="transferFrom"/>					 	
             <Widgetname="event_transfertoWgt" title="transferTo"/>					
        </children>
		</Widget>
	</FixedBoard>
</FixedBoardGroup>

It provides different parameters for tag “FixedBoard”.

Table 1.
Parameter Value
Id Fixed board id, mandatory
Right The distance from the desktop right margin, unit is pix.
Top/bottom The distance from the desktop top/bottom margin, unit is pix
Width The fixed board width, unit is pix.
Height The fixed board height, unit is pix.
Title The fixed board title.

Example



Feedback