[go: nahoru, domu]

Jump to content

UI data binding: Difference between revisions

From Wikipedia, the free encyclopedia
Content deleted Content added
Line 31: Line 31:


=== JavaScript ===
=== JavaScript ===
* [http://sap.github.io/openui5/ OpenUI5]
* [http://knockoutjs.com/ knockout.js]
* [http://knockoutjs.com/ knockout.js]
* [http://backbonejs.org/ Backbone.js]
* [http://backbonejs.org/ Backbone.js]

Revision as of 21:05, 13 September 2014

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.

A bound control is a widget whose value is tied or bound to a field in a recordset (i.e., 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.

Data binding frameworks and tools

Cocoa & Cocoa Touch

  • Cocoa Bindings [1]
  • ReactiveCocoa [2]
  • LiveBindings [3]
  • DSharp 3rd party Data Binding tool [4]
  • OpenWire Visual Live Binding - 3rd party Visual Data Binding tool [5]

Java

.NET

  • Windows Forms data binding overview [9]
  • WPF data binding overview [10]
  • Unity 3D data binding framework (available in modifications for NGUI, iGUI and EZGUI libraries) [11]

Flex

  • Flex data binding [12]

JavaScript

See also