/**
|
Bootstrap datefield input - modification for inline mode.
|
Shows normal <input type="text"> and binds popup datepicker.
|
Automatically shown in inline mode.
|
|
@class datefield
|
@extends date
|
|
@since 1.4.0
|
**/
|
(function ($) {
|
"use strict";
|
|
var DateField = function (options) {
|
this.init('datefield', options, DateField.defaults);
|
this.initPicker(options, DateField.defaults);
|
};
|
|
$.fn.editableutils.inherit(DateField, $.fn.editabletypes.date);
|
|
$.extend(DateField.prototype, {
|
render: function () {
|
this.$input = this.$tpl.find('input');
|
this.setClass();
|
this.setAttr('placeholder');
|
|
//bootstrap-datepicker is set `bdateicker` to exclude conflict with jQuery UI one. (in date.js)
|
this.$input.bdatepicker(this.options.datepicker);
|
|
//need to disable original event handlers
|
this.$input.off('focus keydown');
|
|
//update value of datepicker
|
this.$input.keyup($.proxy(function(){
|
this.$tpl.removeData('date');
|
this.$tpl.bdatepicker('update');
|
}, this));
|
|
},
|
|
value2input: function(value) {
|
this.$input.val(value ? this.dpg.formatDate(value, this.parsedViewFormat, this.options.datepicker.language) : '');
|
this.$tpl.bdatepicker('update');
|
},
|
|
input2value: function() {
|
return this.html2value(this.$input.val());
|
},
|
|
activate: function() {
|
$.fn.editabletypes.text.prototype.activate.call(this);
|
},
|
|
autosubmit: function() {
|
//reset autosubmit to empty
|
}
|
});
|
|
DateField.defaults = $.extend({}, $.fn.editabletypes.date.defaults, {
|
/**
|
@property tpl
|
**/
|
tpl:'<div class="input-append date"><input type="text"/><span class="add-on"><i class="icon-th"></i></span></div>',
|
/**
|
@property inputclass
|
@default 'input-small'
|
**/
|
inputclass: 'input-small',
|
|
/* datepicker config */
|
datepicker: {
|
weekStart: 0,
|
startView: 0,
|
minViewMode: 0,
|
autoclose: true
|
}
|
});
|
|
$.fn.editabletypes.datefield = DateField;
|
|
}(window.jQuery));
|