Neha Patil (Editor)

UI data binding

Updated on
Edit
Like
Comment
Share on FacebookTweet on TwitterShare on LinkedInShare on Reddit

UI data binding is a software design pattern to simplify development of GUI applications. UI data binding binds UI elements to an application domain model. Most frameworks employ the Observer pattern as the underlying binding mechanism. To work efficiently, UI data binding has to address input validation and data type mapping.

Contents

A bound control is a widget whose value is tied or bound to a field in a recordset (e.g., a column in a row of a table). Changes made to data within the control are automatically saved to the database when the control's exit event triggers.

Delphi

  • DSharp 3rd party Data Binding tool
  • OpenWire Visual Live Binding - 3rd party Visual Data Binding tool
  • Java

  • JFace Data Binding
  • JavaFX Property
  • .NET

  • Windows Forms data binding overview
  • WPF data binding overview
  • Unity 3D data binding framework (available in modifications for NGUI, iGUI and EZGUI libraries)
  • JavaScript

  • AngularJS
  • Backbone.js
  • Ember.js
  • Datum.js
  • knockout.js
  • Meteor, via its Blaze live update engine
  • OpenUI5
  • React
  • References

    UI data binding Wikipedia