Last active
April 6, 2018 01:11
-
-
Save mitsuruog/cdc997bbc901ae180d52 to your computer and use it in GitHub Desktop.
multiple property databinding on SAPUI5
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
new sap.m.Text({ | |
text: { | |
parts: [ | |
{path: "Width"}, | |
{path: "Depth"}, | |
{path: "Height"}, | |
{path: "DimUnit"} | |
], | |
formatter: function(width, depth, height, dimUnit){ | |
return width + " x " + depth + " x " + height + " " + dimUnit; | |
} | |
} | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment