cancel
Showing results for 
Search instead for 
Did you mean: 

Is there a way to manipulate two bound properties upon loading them?

Former Member
0 Kudos

The title of this post doesn't really explain well. I want a placeholder property to contain the returned value of the quantity ordered, minus the quantity received, and I'm trying to do it in the controller.

qtyO = new sap.m.Input({

                    type: sap.m.InputType.Number,

                    placeholder: "{QtyOrdered}" - "{QtyReceived}",

                    width: "100px",

                    enabled: false,

                    change: function (evt) {

                        refreshList(evt);

                    }

                }),

I think what I'm trying here isn't following the strings as paths, as it returns NaN. Is there a simple way to doing this? Or would it be better done on the backend?

Accepted Solutions (1)

Accepted Solutions (1)

former_member91307
Contributor
0 Kudos

Hi Jackie,

You could use calculated fields.


Find below example of above code edited

http://jsbin.com/afif/105/edit

Thanks and Regards,Venkatesh

Former Member
0 Kudos

Thank you! This is a great help.

Answers (0)