I do have a line in ui.xml for horizontalsliderbar (HTML5).
Test.ui.xml
<input ui:field="slider1" type="range" min="0" max="100" value="30"
step="10""></input>
Test.java
@UiField
InputElement slider1;
How can I get/set to value, min, max and so on...
A possible solution could be:
Hope that helps.