vote up 0 vote down star

I've been wondering, at what point should I give up the convenience of a static data entry form with designer support for a dynamic UI which removes a lot of code duplication?

There seems to be a conflict in the programming world where people constantly try to remove code repetition to improve maintainability and yet when it comes to forms, that all goes out of the window and everything gets added explicitly to the forms.

What signs should I look for to know when it's time to leave the designer in the dust and create a dynamic UI?

flag

67% accept rate

2 Answers

vote up 2 vote down

Dynamic UI are fine for some types of data and some business processes

Mostly they look ugly once any level of complexity sets in

I use a model to define dynamic forms made from : group frame, labels, textboxes, numberboxes, option buttons, and checkboxes in WPF

It works fine for filling in basic data to control templated document and catalog creation

But I don't think it would work well for typical business data with complex hierarchies etc

link|flag
vote up 0 vote down

A UI has to be optimized to the user workflow, it has to make data entry convenient and it has to look nice, automatically generating such a UI for anything with real-world complexity is difficult if not impossible.

link|flag
I'm not talking about generating an entire UI. I'm talking about using code to generate duplicate code in complex systems of forms with a large amount in common. – Damien Mar 1 at 11:58

Your Answer

Get an OpenID
or

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