vote up 6 vote down star
4

UI Databinding aka transfer of information/data from the biz-layer/datamodel of an application to the UI and from the UI back to the datamodel, seams to be ignored a little by language and framework designers.

Almost all information processed by software systems today has to be presented at some point of the processing chain to human users, still the support we get from our programming systems to present info to users mostly consists of hard to maintain transfer methods, some systems using reflection with no compiletime verification ("propertychanged" anyone?), or propritiary code generators.

I mean Erik Meijer, Anders Hejlsberg and their teams f.e. have put huge efforts to solve the impedance mismatch between DBs, XMLs and the code... but left out UI mostly. (well yes .net has databinding, but try to use it and then let's talk about a real solution) The point is: what is the rational behind NOT treating databinding specially as first class feature of a language f.e? Why is there only so limited (or none) support for MVC/MVP patterns in our tools today?

Please provide comments, hints and pointers to alternative concepts available and maybe even work in progress in this field. Is there even any new creative and fresh ideas? Any helpful frameworks, language concepts supporting databinding, and maybe tools which help you to handle databinding in your apps or systems?

flag

5 Answers

vote up 3 vote down check

The WPF binding although good is too complex, it combines features of XPath with normal .Net binding and is super flexible, but very difficult to debug when it gets complex, and also very longwinded - how many IValueConverter's does one piece of code need?

The DependencyObject from WPF is brilliant though - a property that manages memory sensibly, has built in notification of changes - that's a good start for binding and properties in general.

link|flag
vote up 0 vote down

Databinding in Cocoa and Objective-C is very much alive and well. Part of that is because it's built on top of key value coding and key value observing, which are very solid and well thought out features in Cocoa. It's also well integrated in a lot of the new technologies Apple is developing, such as Core Data.

link|flag
vote up 0 vote down

Other frameworks that support databinding are Adobe Flex and Microsoft's WPF.

link|flag
vote up 0 vote down

The databinding and UI models in WPF are nothing short of amazing. You can bind to methods of objects, bind asynchronously, bind one-way (from source to target or vice versa) or 2-way directionally, and bind to other UI elements on the screen.

You can specify DataTemplates, which control how a particular type is displayed. You can define triggers, which allow the UI to change based upon changes in the bound objects (or elsewhere in the UI). In short, you should really look at WPF if you feel the state of UI/binding representation is lacking.

Here's a recent post which illustrates the power of WPF, where using basic constructs you can display a map with coordinates on it.

link|flag
Yes, WPF has put .net data binding a way forward based on what is possible with reflection and wiring things up with string constants. This tends to be problematic though once the app gets bigger than a cool sample. There, you need much more compile time validation of your app. – pointernil Jan 20 at 10:03
vote up 0 vote down

In Python, you can use Enthought Traits for this. You define a model and that model already contains all the knowledge and logic so that you can create an editor for it with a single line of code.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.