I am incorporating Smart GWT sliders into a GWT application, and when I set the minValue of the slider to 0 and the minValueLabel to "0%", the label does not display as "0%". It displays simply as "0". If I change the minValue to something else like 1, the label displays correctly as "0%". Does anyone know why this might be happening? I am using Smart GWT version 2.5 and I've also tested with version 3.0. It doesn't work in either version. I am testing using Firefox 10.0.2 and Chrome 17.0.963.83 m. Following are snippets of my code:
From my view Java class:
From my view ui.xml:
From my view Java class:
Code:
view.setSliderMinValue(0);
Code:
<sgwt:Slider ui:field="slider" vertical="false" minValueLabel="0%" maxValueLabel="100%" showTitle="false"/>
Comment