boshek
1
Is there any way to drop the number box beside Inputs.range
?
I only want the slider…
Not as an option, but you can remove the element fairly easily:
viewof myrange = {
const form = Inputs.range([2, 10], {label: "My range"});
form.number.remove();
return form;
}
1 Like