-
-
Notifications
You must be signed in to change notification settings - Fork 265
Open
Labels
Description
First on top
The dropdown isn't first on top, unless i missed a prop. I think there should be an option for it.
Overflow x
Simply setting overflow-x-auto to a container makes the dropdowns also scroll
My dropdown
<Dropdown
invalid={error}
name={input.name}
selectedId={SelectedId(input.input)}
invalidText="Něco není správně"
on:select={(e) => {
let detail = e.detail;
if (input.input.selectText) {
value = detail.selectedItem.text;
} else {
value = detail.selectedId;
}
}}
titleText={input.input.label}
label={input.input.placeholder}
items={input.input.options}
/>
MaximMaximS and ThatBlokeJosh