2

I have large number of form elements (80+) to design on the html page. Is there nice way to organize and design those elements ?

ekad
  • 14,436
  • 26
  • 44
  • 46
Loganathan Natarajan
  • 340
  • 1
  • 10
  • 26

2 Answers2

1

put you control in Sections of Div and than minimize/maximize the dive

example : http://dyndiv.markusbordihn.de/example/moveable-min-max/ when you click cross sign it minimize and maixmize div....same thing you can do it by using +/- sign something like expading control. but this do involve javascript.

or

Make use of Tabs to organize control. : http://jqueryui.com/demos/tabs/

Pranay Rana
  • 175,020
  • 35
  • 237
  • 263
1

While I agree with @Pranay Rana about the pattern of breaking the fields up in sections, make it more semantic and give your AT (assistive technololgy) users a break and organize your forms and section related items off in <fieldset> elements.

steveax
  • 17,527
  • 6
  • 44
  • 59