Increase one object when click on add

0
I have a field which represents Quantity. Next to it is a button +, on click of which microflow is called which increases the quantity by 1 each time it is clicked. Microflow logic is simple, change object and the field entity= field entity+1. However when i run app, nothing happens if i click on button. Do i need to make some change on the field too for it to get updated?
asked
3 answers
2

Probably forgot to enable refresh client or commit when you change the object indeed.

answered
1

A screenshot of the microflow, including the input parameter, would be very useful here.

Otherwise, and I’d just be guessing here, you may not be refreshing the changed object on the screen after the change? Perhaps the right field isn’t displayed on the page?

Again, some additional context here would be very helpful.

answered
1

I agree with Roel that you likely missed checking the “refresh in client” box on the change activity. 

If all your microflow is doing is updating a value on the screen, you should make it a nanoflow instead. Then you don’t have to remember to check the “refresh in client” box because all change actions in nanoflows take effect in the client immediately!

answered