Skip welcome & menu and move to editor
Welcome to JS Bin
Load cached copy from
 
<!DOCTYPE html>
<html>
<head>
  <meta charset="utf-8">
  <title>Binding example</title>
  
  <script id='sap-ui-bootstrap' type='text/javascript'
    src='https://openui5.hana.ondemand.com/resources/sap-ui-core.js'
    data-sap-ui-theme='sap_bluecrystal'
    data-sap-ui-libs='sap.ui.core,sap.ui.commons'>
  </script>
 
  <script>
    
    var oModel = new sap.ui.model.json.JSONModel();
    oModel.setData({foo: "Value I want to see in alert"});
    sap.ui.getCore().setModel(oModel, "myModel");
    
    var oButton = new sap.ui.commons.Button({text: "ERROR - should not see this"});
    oButton.bindProperty("text", "myModel>/foo");
    oButton.placeAt("content");
    
    alert(oModel.getProperty("/foo"));  
  </script>
    
</head>
<body>
<div id="content">Your content here</div>
</body>
</html>
Output

You can jump to the latest bin by adding /latest to your URL

Dismiss x
public
Bin info
RalphMarshallpro
0viewers