[ 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: DemoPageSearch.js
(function(namespace, $) { "use strict"; var DemoPageSearch = function() { // Create reference to this instance var o = this; // Initialize app when document is ready $(document).ready(function() { o.initialize(); }); }; var p = DemoPageSearch.prototype; // ========================================================================= // MEMBERS // ========================================================================= p.map = null; // ========================================================================= // INIT // ========================================================================= p.initialize = function() { this._initDatePicker(); this._initMultiselect(); }; // ========================================================================= // MULTISELECT // ========================================================================= p._initMultiselect = function() { if (!$.isFunction($.fn.multiselect)) { return; } $('select[name="category"]').multiselect({ buttonClass: 'form-control', buttonContainer: '<div class="btn-group btn-group-justified" />' }); }; // ========================================================================= // DATETIME // ========================================================================= p._initDatePicker = function() { if (!$.isFunction($.fn.datepicker)) { return; } $('.input-daterange').datepicker({todayHighlight: true}); }; // ========================================================================= namespace.DemoPageSearch = new DemoPageSearch; }(this.materialadmin, jQuery)); // pass in (namespace, jQuery):