Skip welcome & menu and move to editor
Welcome to JS Bin
Load cached copy from
 
<!DOCTYPE html>
<html>
  <head>
    <meta charset="utf-8">
    <title>JS Bin</title>
    <script 
            src="https://openui5.hana.ondemand.com/resources/sap-ui-core.js" 
            id="sap-ui-bootstrap" 
            data-sap-ui-theme="sap_bluecrystal" 
            data-sap-ui-xx-bindingSyntax="complex" 
            data-sap-ui-libs="sap.m"></script>
  </head>
  <body class="sapUiBody">
    <div id='content'></div>
  </body>
</html>
 
sap.m.Input.extend('InputWithAttrs', {
  metadata: {
    aggregations: {
      attributes: 'sap.ui.core.CustomData'
    }
  },
  renderer: {},
  onAfterRendering: function() {
    if (sap.m.Input.prototype.onAfterRendering) {
      sap.m.Input.prototype.onAfterRendering.apply(this, arguments);
    }
    var input = this.$().find('INPUT');
    this.getAttributes().forEach(function(attr) {
      input.attr(attr.getKey(), attr.getValue());
    });
  }
});
(new InputWithAttrs({
  value: 'asd',
  attributes: [new sap.ui.core.CustomData({
    key: 'tabindex',
    value: '1'
  })]
})).placeAt('content');
Output

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

Dismiss x
public
Bin info
dennisseahpro
0viewers