Book Image

Backbase 4 RIA Development

Book Image

Backbase 4 RIA Development

Overview of this book

Backbase is a very powerful and complex JavaScript library, with many user interface components to help make web development easier. It allows the development of Rich Internet Applications (RIA) that run within all major browsers but its powers and complexity mean that the choice of component can be overwhelming. Understanding when and how to use the right component might not always be straightforward. This book makes that easier. This is a practical book that teaches you how to use the Backbase Client Framework effectively, with a complete overview and many examples. A core developer of the framework puts the technologies used into a wider perspective of existing web standards and a seasoned software architect explains why XML-based UI definition produces better web applications. The transparent use of AJAX technologies, for example to submit forms, or to retrieve updates for data grids, can be taken for granted with the Backbase framework. Packed with examples, the book shows you how to get the most from the library of UI components, and then extend the library with its own custom language. With this book in hand, it is easy to enable AJAX within your web application. You will be able to use the Backbase framework effectively, from basic applications to complex, custom-defined UI components. This book contains a complete overview of all the UI libraries available within the Backbase framework and shows examples for each element described. The Backbase framework offers an innovative Tag Definition Language (TDL), which allows developers to create new UI components that can be used as XML elements, in the same way as using the built-in GUI library. Using TDL brings considerable development advantages, and this book explains how. Significant attention is also given to architectural aspects of designing a web-application, showing sample applications using a model-view-controller approach.
Table of Contents (16 chapters)
Backbase 4 RIA Development
Credits
About the Authors
About the Reviewers
Preface

Miscellaneous commands


This category contains, as the name suggests, some commands that we did not know how to place in another category: trace, alert, and bookmark.

trace

Adds the specified message to the event log. The context (either the current context or a context defined by the XEL with element/attribute) is automatically added to the message.

The trace command supports the select and with attributes.

Logs a message and places it in the console. Here's the code for trace command:

<div>
Log a message to the console for debugging...
<e:handler event="click">
<c:trace select="'My Debug Message'" />
</e:handler>
</div>

The next screenshot shows what happens when you click on the text:

alert

Alert requires no introduction. You have seen so many already!

It raises an alert box with the text as specified by the select attribute. Let's look at the following code:

<div>
Click for Command Alert (string) - returns "alert text"
<e:handler event="click">
&lt...