Directory

← Back

Lumo Paper Slider

A field component based on paper-slider with full API and Lumo styles for Vaadin 14 and newer

Author

Contributors

Rating

This is a field component based on paper-slider with full Vaadin style field API and Lumo compatible styles for Vaadin 14. Includes theme variants for primary, error, success and secondary color schemes.

Tested to work with Vaadin 14 and 24.

Major pieces of development of this add-on has been sponsored by customers of Vaadin. Read more about Expert on Demand at: Support and Pricing

Sample code

        slider1.setMin(1);
        slider1.setMax(10);
        slider1.setWidth("500px");
        slider1.addValueChangeListener(event -> {
            Notification.show("Answer: " + event.getValue());
        });
        slider2.setMin(0);
        slider2.setMax(100);
        slider2.setWidth("250px");
        slider2.setValue(0);
        slider2.addThemeVariants(PaperSliderVariant.LUMO_SECONDARY);
        slider2.addValueChangeListener(event -> {
            Notification.show("Value: " + event.getValue());
        });
        slider3.setMin(1);
        slider3.setMax(10);
        slider3.setWidth("500px");
        slider3.setValue(4);
        slider3.setEnabled(false);
        slider4.setMin(0);
        slider4.setMax(10);
        slider4.setWidth("500px");
        slider4.setValue(0);
        slider4.setReadOnly(true);
        slider5.setMin(0);
        slider5.setMax(100);
        slider5.setWidth("500px");
        slider5.setValue(13);
        slider5.setSecondaryProgress(62);
        slider5.setPinned(true);
        slider5.setSnaps(true);
        slider5.setMaxMarkers(10);

Compatibility

(Loading compatibility data...)

Was this helpful? Need more help?
Leave a comment or a question below. You can also join the chat on Discord or ask questions on StackOverflow.

Version

Version 1.0.0

  • First version tested with Vaadin 14.9.2
Released
2023-01-02
Maturity
BETA
License
Apache License 2.0

Compatibility

Framework
Vaadin 14
Vaadin 14+ in 1.0.1
Browser
Firefox
Opera
Safari
Google Chrome
iOS Browser
Android Browser
Microsoft Edge

Vaadin Add-on Directory

Find open-source widgets, add-ons, themes, and integrations for your Vaadin application. Vaadin Add-on Directory
The channel for finding, promoting, and distributing Vaadin add-ons.
Online