or
var alarmsViewModel = kendo.observable({ alarms: [ { time : "13:00", note : "Note goes here", daysOfWeek : "Every Monday", onOff : "off", snooze : "off", alarmType : "ring" }, { time : "11:30", note : "Note goes here 2", daysOfWeek : "Every Monday", onOff : "off", snooze : "off", alarmType : "ring" } ], add: function(e) { this.get("alarms").push({ time: this.get("time"), note: this.get("note"), daysOfWeek: this.get("daysOfWeek"), onOff: this.get('onOff'), snooze: this.get('snooze'), alarmType: this.get('alarmType') }); e.preventDefault(); }, onClick: function(e) { kendoConsole.log("event :: click", e); }});<input type="time" data-bind="value:time">
if (state !== STATE_FILTER && !that._fetch) { that._selectItem();}