Skip welcome & menu and move to editor
Welcome to JS Bin
Load cached copy from
 
<!DOCTYPE HTML>
<html>
<head>
    <meta http-equiv="X-UA-Compatible" content="IE=edge" />
    <meta charset="UTF-8">
    <title>App Title</title>
    <script id="sap-ui-bootstrap"
            type="text/javascript"
            src="https://sapui5.hana.ondemand.com/resources/sap-ui-core.js"
            data-sap-ui-theme="sap_belize"
            data-sap-ui-libs="sap.m"
            data-sap-ui-xx-bindingSyntax="complex">
    </script>
</head>
<body class="sapUiBody" role="application">
    <div id="content"></div>
</body>
</html> 
 
sap.ui.define(["sap/m/DatePicker"], function(DatePicker) {
  "use strict";
  
  var oDatePicker = new DatePicker({
     displayFormat: "dd-MM-yyyy",
     valueFormat: "yyyy-MM-dd",
     editable: true,
     value: "31-12-9999",
  });
  
  oDatePicker._openPopup = function() {
    var today = new Date();
    this.setValue(today.getFullYear() + '-' + (today.getMonth() +1) + '-' + today.getDate());      
    DatePicker.prototype._openPopup.apply(this, arguments);
  }
  oDatePicker.placeAt('content');
});
Output

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

Dismiss x
public
Bin info
dennisseahpro
0viewers