Henrik
Henrik

Reputation: 1807

multi select list only have vertical scrollbar

I've got a multi select list, but it only gives me an vertical scrollbar. I even want a horizontal scrollbar if the content is wider than the select list.

<select multiple="multiple" height="5" data-bind="options:storedProceduresInDB1, selectedOptions:selectedStoredProceduresInDb1"> </select>

JSFiddle

Upvotes: 0

Views: 886

Answers (1)

Ivan.Srb
Ivan.Srb

Reputation: 1851

It is not a Knockout's problem. You could add overflow: auto; to .list CSS class and remove width: 100%; from .list select[multiple].
It is will add horizontal scroll to div, not to select. You can rewrite you HTML to make it more friendly looking.

Upvotes: 1

Related Questions