Closed (fixed)
Project:
Legal
Version:
5.x-1.1
Component:
Code
Priority:
Normal
Category:
Support request
Assigned:
Unassigned
Reporter:
Created:
9 Nov 2007 at 10:40 UTC
Updated:
6 Feb 2008 at 21:33 UTC
Is it possible have checkboxes at the inside the scroll bar? Can this be implemeted , even through a hack?
Thank you
Comments
Comment #1
onesimpleman commentedComment #2
robert castelo commentedYou could write a small module which uses hook_form_alter() to do this, or it might be possible to do by changing the CSS, possibly a combination of the two.
Comment #3
onesimpleman commentedThank you , I will try the hook form and let you know
Comment #4
Berto commentedOnesimpleman - Did you ever do this? I am about to start working on it and would like to work together if you haven't already. Thanks!
berto
Comment #5
Berto commentedFigured it out with CSS:
#MYFORMID .form-checkboxes
{
height:100px;
overflow:auto;
}
Replace MYFORMID and Done!