range - GWT How can I access HTML5 variable -


i have line in ui.xml 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 get/set value, min, max , on...

a possible solution be:

slider1.setattribute("min", "0"); slider1.setattribute("max", "100"); slider1.setattribute("value", "30"); slider1.setattribute("step", "10"); 

hope helps.


Comments

Popular posts from this blog

java - Oracle EBS .ClassNotFoundException: oracle.apps.fnd.formsClient.FormsLauncher.class ERROR -

c# - how to use buttonedit in devexpress gridcontrol -

nvd3.js - angularjs-nvd3-directives setting color in legend as well as in chart elements -