Is it possible have checkboxes at the inside the scroll bar? Can this be implemeted , even through a hack?

Thank you

Comments

onesimpleman’s picture

robert castelo’s picture

Status: Active » Closed (fixed)

You 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.

onesimpleman’s picture

Thank you , I will try the hook form and let you know

Berto’s picture

Onesimpleman - 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

Berto’s picture

Figured it out with CSS:

#MYFORMID .form-checkboxes
{
height:100px;
overflow:auto;
}

Replace MYFORMID and Done!