qooxdoo

Universal JavaScript Framework

 

Data Binding

Introduction

Data binding is a functionality that allows to connect data from a source to a target. The entire topic can be divided into a low-level part, called "single value binding", and some higher-level concepts involving stores and controllers.

The main idea

The main idea of qooxdoo's data binding component is best summarized by the following diagram.

databindingarchitecture.jpg

As you can see data binding includes five major components, which will be described in more detail in the following sections.

Data

The data part is where the raw data is stored and can be retrieved from. This can be a plain local file, a regular web server or even a web service. There are all sources of data possible depending on the implementation of the actual store.

Store

The store component is responsible for fetching the data from its source and for including it into a data model of an application. For more info about the available store components see the stores section below.

Model

The model is the centerpiece of data binding. It holds the data and acts as an integration point for the store and for the controller. The stores provide a smart way to automatically the models classes during runtime. Take a look at the models for details.

Controller

The main task of the controller components is to connect the data in the model to the view components. Details are available in the controller section. The base layer of all controllers, the Single Value Binding is explained later.

View

The views for data binding can be almost any widget out of qooxdoo's rich set of widgets, depending on the type of controller. qooxdoo's data binding is not limited to some predefined data bound widgets. Please note that one of the most prominent data centric widgets, the virtual Table, currently still has its own model based layer and is not covered by the new data binding layer. The new infrastructure for virtual widgets is expected to nicely integrate the upcoming data binding layer, though.

Demos, API and CheatSheet

You should now have a basic idea of qooxdoo's data binding, so to see it in action, take a look at the online demos and the API reference. If you want to start programming, maybe the CheatSheet can help you during your programming.

Table Of Contents

Previous topic

Data Binding

Next topic

Single Value Binding

This Page