我有一个带有一些属性的容器:
myMaintenancerateContainer.addContainerProperty(myPerCent1T, FloatStepper.class,null);
这会在我的容器中添加一个带浮点值的步进器。
实际上,我想要步进器+“%”,因为步进器中的值是%值。
我已经尝试在我的项目中添加+“%”,如下所示:
item.getItemProperty(myPerCent1T).setValue(myPerCent1Stepper+"%");
myPerCent1Stepper是一个步进器字段:
final FloatStepper myPerCent1Stepper = new FloatStepper();
myPerCent1Stepper.setWidth("50px");
myPerCent1Stepper.setMinValue(0f);
myPerCent1Stepper.setMaxValue(100f);
我收到错误,因为预期了Stepper,但收到了String,因为+“%”。
我在vaadin书籍上寻找解决方案,但在这种情况下找不到任何帮助我。