EffectiveEdge
-
Posts
13 -
Joined
-
Last visited
Reputation Activity
-
EffectiveEdge got a reaction from Ziggy in Focus Outline order
It never occurred to me that this would be the case. But you make a great point. I will investigate this. Thank you!
-
EffectiveEdge reacted to Ziggy in Focus Outline order
I often find that the block order in the HTML code is determined by the order in which the blocks were created not the order they are in on the page. If that's correct, then the order that the accessibility focus outline appears in will follow that same path and the way to correct it will be to systematically add blocks in the order in which you want to be able to tab through the content. This might involve rebuilding sections.
-
EffectiveEdge got a reaction from creedon in Form Dropdown - Select multiple options
Thank you for the help. I didn't think there was a way - but there are more clever people (yourself) that know the capabilities of SS more clearly!
Thanks again!
-
EffectiveEdge reacted to creedon in Form Dropdown - Select multiple options
It is not possible to use a the default select drop down on SS for multiple selections. Although you can change its behaviour in the browser with JavaScript. SS's backend does not expect multiple selections and only processes one of the selections.
You can of course use checkbox to select multiple items.
If your client is really married to the multiple select, which by the way really isn't a drop down any more but a multi-select list. It may be possible to fake it with JavaScript and CSS. But this wouldn't' be easy and I don't know of any code that does this. The idea would be to use the checkbox but hide it with CSS. Then use JavaScript to build a multi-select list from the checkboxes then when the form is submitted, read the multi-select and populate the checkboxes.