IBM WebSphere Multichannel Bank Transformation Toolkit, Version 7.1

DefaultApp.xml

The DefaultApp.xml file defines the default attributes of Tab, Column and Row. It can decide in what way the end-users can customize tabs, columns and rows. Newly created elements take these as the default metadata.

The best practice is to define the element attributes in the UserPageLayout.xml file explicitly. In this case, the attributes in UserPageLayout.xml file will override those defined in theDefaultApp.xml file.

An alternative way is to leave the default values defined in DefaultApp.xml file.

Here is an example of DefaultApp.xml:

<?xml version="1.0" encoding="UTF-8"?>
<DefaultApp xmlns="http://btt.cn.ibm.com/61/Web20" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 
  xsi:schemaLocation="http://btt.cn.ibm.com/61/Web20 ../BTTWeb20/schema/DefaultApp.xsd">
	<Tab>
		<title>New Tab</title>
		<logo>theme/tablogo/6.gif</logo>
		<closable>1</closable>
		<editable>1</editable>
		<maxColLength>3</maxColLength>
	</Tab>
	<Column>
		<closable>1</closable>
		<draggable>1</draggable>
		<maxWidth>10000</maxWidth>
		<minWidth>100</minWidth>
	</Column>
	<Row>
		<draggable>1</draggable>
	</Row>
</DefaultApp>
Note: You can modify the value of certain attributes. However you can not add or delete any attributes in this version.

Parameters specification for each tag are as follows:



Feedback