[ Mini Kiebo ]
Server: Windows NT DESKTOP-5B8S0D4 6.2 build 9200 (Windows 8 Professional Edition) i586
Path:
D:
/
Backup
/
05122024
/
htdocs
/
repository-perpus
/
app
/
assets
/
js
/
core
/
demo
/
[
Home
]
File: DemoFormLayouts.js
(function(namespace, $) { "use strict"; var DemoFormLayouts = function() { // Create reference to this instance var o = this; // Initialize app when document is ready $(document).ready(function() { o.initialize(); }); }; var p = DemoFormLayouts.prototype; // ========================================================================= // INIT // ========================================================================= p.initialize = function() { this._initDatePicker(); }; //====================================================================== // Date Picker // ========================================================================= p._initDatePicker = function() { if (!$.isFunction($.fn.datepicker)) { return; } $('#demo-date').datepicker({autoclose: true, todayHighlight: true}); $('#demo-date-month').datepicker({autoclose: true, todayHighlight: true, minViewMode: 1}); $('#demo-date-format').datepicker({autoclose: true, todayHighlight: true, format: "yyyy/mm/dd"}); $('#demo-date-range').datepicker({todayHighlight: true}); $('#demo-date-inline').datepicker({todayHighlight: true}); }; // ========================================================================= namespace.DemoFormLayouts = new DemoFormLayouts; }(this.materialadmin, jQuery)); // pass in (namespace, jQuery):