Hi,
For example im using garland. Im inside a node and the node contains a fieldset that shows the form, but it is closed. Im not sure how to display it open without modifying my CSS. Should i modify the form through hook_form_alter? I think there could be an option around.
Thanx
| Comment | File | Size | Author |
|---|---|---|---|
| #2 | openfieldset-1444614-2.patch | 1.24 KB | Anonymous (not verified) |
Comments
Comment #1
Anonymous (not verified) commentedHello,
You can do this by change in the node.invite.send.inc by setting the '#collapsed' attribute of the fieldset.As it doesn't effect other things.If you want to do this then follow these steps.You can open the file node.invite.send.inc in node_invite module under the module directory.
Changes that have to be done in this file
- '#collapsed' => FALSE, (Line number 15)
+ '#collapsed' => TRUE, (Line number 15)
Comment #2
Anonymous (not verified) commentedHello betovarg,
I have created a patch that will give the checkbox to the admin settings page that provide the option to open or close it.Please test it if this help you.
Comment #3
Anonymous (not verified) commented@betovarg. Please update on this.