Skip welcome & menu and move to editor
Welcome to JS Bin
Load cached copy from
 
<!DOCTYPE html>
<html>
  <head>
<meta name="description" content="Multi Input Example" />
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta http-equiv='Content-Type' content='text/html;charset=UTF-8'/>
    <script src="https://sapui5.netweaver.ondemand.com/resources/sap-ui-core.js"
            id="sap-ui-bootstrap"
            data-sap-ui-libs="sap.m, sap.ui.commons, sap.ui.core, sap.ui.ux3, sap.ui.table, sap.ui.layout"
            data-sap-ui-theme="sap_bluecrystal">
        </script>
  <title>JS Bin</title>
  </head>
    <body class="sapUiBody" role="application" id="root">
        <div id="content"></div>
    </body>
</html>
 
var sNotiz = "text{test:[123]}";
var page = new sap.m.Page("page", {
  content : [
    new sap.ui.layout.form.SimpleForm({ 
      content: [
        new sap.m.TextArea({
                value: sNotiz,
                editable: false,
                growing: true,
                width: "100%"
            })
      ]
    })
  ]
});
            
var app = new sap.m.App({
  pages: [page]
}).placeAt("content");
page2.addContent(app);
Output

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

Dismiss x
public
Bin info
anonymouspro
0viewers