Enter the number textbox in vertical and increase as shown in image.

0
Can anyone help me how can we add this textbox in mendix with greater and smaller arror. If we increase the number in the text box the cost will increase double. Which condition I need to added in that and which widget I need to add for below image   
asked
1 answers
1

You can do this with these widgets:

  • Put a text box on your page that shows the attribute you're changing
  • Add two borderless and transparent buttons (one on the left and one on the right) with the chevron icons
  • Add a nanoflow on each of those buttons, one that does a change object action with $Entity/Attribute – 1 and one that does a change object action with $Entity/Attribute + 1
answered