Module to make text collapsible?
Hi! I'm wondering if anyone knows of a module that lets users create collapsible blocks on the page, such as can be done with forms? As an example, I'd like to be able to type something like: [block title=Members collapsible collapsed] A. User T. Person A. Member [/collapsible] and have it display a collapsed fieldgroup with a legend of "Members". Does anyone know of anything out there that would provide something like this? Thanks, Ricky The information transmitted in this electronic communication is intended only for the person or entity to whom it is addressed and may contain confidential and/or privileged material. Any review, retransmission, dissemination or other use of or taking of any action in reliance upon this information by persons or entities other than the intended recipient is prohibited. If you received this information in error, please contact the Compliance HelpLine at 800-856-1983 and properly dispose of this information.
I would like to know of such a capability too. Thanks. Peter On 8/28/07, Richard Morse <remorse@partners.org> wrote:
Hi! I'm wondering if anyone knows of a module that lets users create collapsible blocks on the page, such as can be done with forms?
As an example, I'd like to be able to type something like:
[block title=Members collapsible collapsed] A. User T. Person A. Member [/collapsible]
and have it display a collapsed fieldgroup with a legend of "Members".
Does anyone know of anything out there that would provide something like this?
Thanks, Ricky
The information transmitted in this electronic communication is intended only for the person or entity to whom it is addressed and may contain confidential and/or privileged material. Any review, retransmission, dissemination or other use of or taking of any action in reliance upon this information by persons or entities other than the intended recipient is prohibited. If you received this information in error, please contact the Compliance HelpLine at 800-856-1983 and properly dispose of this information.
Ricky You may want to check out the Javascript tools (http://drupal.org/project/jstools) There is a Collapsiblock module as part of the tool set. Steve
On Aug 28, 2007, at 6:46 PM, Steve Ringwood wrote:
Ricky
You may want to check out the Javascript tools (http://drupal.org/project/jstools) There is a Collapsiblock module as part of the tool set.
Hi! Thanks for the suggestion, but I don't think it quite does what I want. Collapsiblock (from what I can tell) seems to be aimed at making Drupal blocks collapsible -- like the login box, or a menu, or the list of upcoming events. Although this is useful, I'm interested in letting people make parts of the page content collapsible. Thanks, Ricky The information transmitted in this electronic communication is intended only for the person or entity to whom it is addressed and may contain confidential and/or privileged material. Any review, retransmission, dissemination or other use of or taking of any action in reliance upon this information by persons or entities other than the intended recipient is prohibited. If you received this information in error, please contact the Compliance HelpLine at 800-856-1983 and properly dispose of this information.
Well, if you can't use the available options, just adapt/reuse the fieldset collapsing code and make your own version: http://cvs.drupal.org/viewvc.py/drupal/drupal/misc/collapse.js?revision=1.10... Or see some jQuery plugins (make such they match the version of jQuery used by D5) like: http://www.stilbuero.de/2007/02/05/tabs-plugin-update-support-for-unobtrusiv... -Peter On 8/29/07, Richard Morse <remorse@partners.org> wrote:
On Aug 28, 2007, at 6:46 PM, Steve Ringwood wrote:
Ricky
You may want to check out the Javascript tools (http://drupal.org/project/jstools) There is a Collapsiblock module as part of the tool set.
Hi! Thanks for the suggestion, but I don't think it quite does what I want. Collapsiblock (from what I can tell) seems to be aimed at making Drupal blocks collapsible -- like the login box, or a menu, or the list of upcoming events. Although this is useful, I'm interested in letting people make parts of the page content collapsible.
Thanks, Ricky
The information transmitted in this electronic communication is intended only for the person or entity to whom it is addressed and may contain confidential and/or privileged material. Any review, retransmission, dissemination or other use of or taking of any action in reliance upon this information by persons or entities other than the intended recipient is prohibited. If you received this information in error, please contact the Compliance HelpLine at 800-856-1983 and properly dispose of this information.
Oh, I was planning to -- I just wanted to make sure I wasn't duplicating effort... Ricky On Aug 29, 2007, at 10:00 AM, Peter Wolanin wrote:
Well, if you can't use the available options, just adapt/reuse the fieldset collapsing code and make your own version:
http://cvs.drupal.org/viewvc.py/drupal/drupal/misc/collapse.js? revision=1.10&pathrev=DRUPAL-5
Or see some jQuery plugins (make such they match the version of jQuery used by D5) like:
http://www.stilbuero.de/2007/02/05/tabs-plugin-update-support-for- unobtrusive-ajax/
-Peter
On 8/29/07, Richard Morse <remorse@partners.org> wrote:
On Aug 28, 2007, at 6:46 PM, Steve Ringwood wrote:
Ricky
You may want to check out the Javascript tools (http://drupal.org/project/jstools) There is a Collapsiblock module as part of the tool set.
Hi! Thanks for the suggestion, but I don't think it quite does what I want. Collapsiblock (from what I can tell) seems to be aimed at making Drupal blocks collapsible -- like the login box, or a menu, or the list of upcoming events. Although this is useful, I'm interested in letting people make parts of the page content collapsible.
Thanks, Ricky
The information transmitted in this electronic communication is intended only for the person or entity to whom it is addressed and may contain confidential and/or privileged material. Any review, retransmission, dissemination or other use of or taking of any action in reliance upon this information by persons or entities other than the intended recipient is prohibited. If you received this information in error, please contact the Compliance HelpLine at 800-856-1983 and properly dispose of this information.
Oh, I was planning to -- I just wanted to make sure I wasn't duplicating effort...
See the collapsible display option in CCK fieldgroup module, part of the core CCK package. There is also CCK Fieldgroup Tabs, http://drupal.org/project/cck_fieldgroup_tabs, which groups given fields on tabs (in node editing and/or in node display).
On Tuesday 28 August 2007 13:58, Richard Morse wrote:
Hi! I'm wondering if anyone knows of a module that lets users create collapsible blocks on the page, such as can be done with forms?
http://drupal.org/project/hovertip http://www.dave-cohen.com/node/1186 The hovertips module provides both "make text visible when the mouse hovers" and "make text visible when the user clicks" functionality. I call them hovertips and clicktips. -Dave
On Aug 29, 2007, at 1:54 PM, Dave Cohen wrote:
On Tuesday 28 August 2007 13:58, Richard Morse wrote:
Hi! I'm wondering if anyone knows of a module that lets users create collapsible blocks on the page, such as can be done with forms?
http://drupal.org/project/hovertip http://www.dave-cohen.com/node/1186
The hovertips module provides both "make text visible when the mouse hovers" and "make text visible when the user clicks" functionality. I call them hovertips and clicktips.
Thanks. This is almost what I want, but not quite -- I'm actually looking for something that exactly matches what Drupal generates. I wound up writing my own module (collapse_text) that does this. I've put it up on Drupal.org (although I have to wait, for some reason, to create a release -- it won't let me select DRUPAL-5 as the tag yet...). Thanks, Ricky The information transmitted in this electronic communication is intended only for the person or entity to whom it is addressed and may contain confidential and/or privileged material. Any review, retransmission, dissemination or other use of or taking of any action in reliance upon this information by persons or entities other than the intended recipient is prohibited. If you received this information in error, please contact the Compliance HelpLine at 800-856-1983 and properly dispose of this information.
participants (6)
-
Dave Cohen -
Nedjo Rogers -
Peter S. Requadt -
Peter Wolanin -
Richard Morse -
Steve Ringwood