IBM WebSphere Multichannel Bank Transformation Toolkit, Version 7.1

Creating user logic

BTT Web2.0 framework provides Dojo support. You can develop your own web application base on BTT Web2.0 pure framework-without Dojo or BTT Web2.0 framework with Dojo. BTT Web2 delivery package BTTWeb20/common/Config.js contains the following configuration by default:
BTTRuntimeConfig =  {	
	debugMode:true,	
	supportBase : "Dojo”
}
If you want to use Dojo in the web application, you do not need to change this configuration. If you do not want to use Dojo, change the configuration to :
BTTRuntimeConfig =  {	 	debugMode:true,	 	supportBase : "btt” }
If the supportBase is set to btt, the BTT Web2.0 framework only supports the widget scopes defined in the original way.
Note: If the your set the other than Dojo and btt, the system use the value btt as default.


Feedback