Some javascript/style in this post has been disabled (
why?)
I thought about the list items at http://datatables.net when I read your mail.
They have the idea: we have a list with x items. They are with too much so we show only y items. The others are hidden. Click on the last entry saying "show more" and this entry removes and the other z items are displayed.
No toggling whatsoever, because youonly click "show more" when you're interested (you want to read the items). Perhaps toggling is more difficult, then a display group or a second element might help indeed.
Regards, Jurian
--
Jurian Sluiman
Soflomo.com
Op Saturday 24 October 2009 19:46:04 schreef Exception e:
> Jurian Sluiman wrote:
> > With the display-group you could render things like fieldset (but also
> > any other element).
> >
> > I think what you want is dynamic behaviour which shouldn't be done with
> > html/css. This is behaviour meant for javascript. With the jQuery view
> > helper
> > it's really easy to accomplish.
>
> Display-group lends itself for easy wrapping. But a subform would do the
> same trick isn't it? Okay, that's less efficient of course.
> As I understand now, the purpose of a DisplayGroup is make it easy to
> decorate a set of elements as a whole.
> I conlude DisplayGroup would not fit this scenario, since you need to
> "decorate somehere between the elements rather than it's concatenated
> output".
>
>
> Well, of course I need JS to do the toggling. Deciding where to put the
> toggle-element could be off-loaded to Javascript of course. Good
> suggestion.