Every line of 'kendo datetimepicker' code snippets is scanned for vulnerabilities by our powerful machine learning engine that combs millions of open source libraries, ensuring your JavaScript code is secure.
303 function DateTimePicker(element, options) { 304 _classCallCheck(this, DateTimePicker); 305 306 this._options = this._getOptions(options); 307 this._element = element; 308 this._dates = []; 309 this._datesFormatted = []; 310 this._viewDate = null; 311 this.unset = true; 312 this.component = false; 313 this.widget = false; 314 this.use24Hours = null; 315 this.actualFormat = null; 316 this.parseFormats = null; 317 this.currentViewMode = null; 318 this.MinViewModeNumber = 0; 319 320 this._int(); 321 }