Closed (fixed)
Project:
ecard
Version:
6.x-1.1
Component:
User interface
Priority:
Normal
Category:
Feature request
Assigned:
Unassigned
Reporter:
Created:
17 May 2008 at 15:39 UTC
Updated:
3 Jun 2008 at 14:43 UTC
I am submitting this as a feature request, although it may just be a configuration setting I am not aware of.
I would like the ability to default the ecard form to the collapsed version.
Comments
Comment #1
mssarath commentedin the module file , line number 218-223 you can see this code.
$form['block'] = array(
'#type' => 'fieldset',
'#title' => t('Send this card'),
'#collapsible' => TRUE,
'#collapsed' => FALSE
);
please change the field '#collapsed' => TRUE, from FALSE.
it will look like this
$form['block'] = array(
'#type' => 'fieldset',
'#title' => t('Send this card'),
'#collapsible' => TRUE,
'#collapsed' => TRUE
);
i don't know whether i should implement it in module, it just a small value change
sarath
Comment #2
spopovits commentedThank you, that worked perfectly. My issue is resolved, if you want to add this to the module as a future release that is your perogative.
Comment #3
spopovits commented