Skip to content

Commit 37c1201

Browse files
committedOct 19, 2015
Fix #50: Enhancement for single date picker plugin functionality
1 parent d750edd commit 37c1201

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed
 

‎CHANGE.md

+1
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ Version 1.6.4
66
- (enh #43): Add Slovak translations.
77
- (bug #45): Correct MomentAsset dependency.
88
- (enh #46): Better defaulting of `form-control` CSS class.
9+
- (enh #50): Enhancement for single date picker plugin functionality.
910
- (enh #51): Update to latest release of bootstrap-datarangepicker plugin.
1011

1112
Version 1.6.3

‎DateRangePicker.php

+5-1
Original file line numberDiff line numberDiff line change
@@ -308,9 +308,13 @@ function(start, end) {
308308
JS;
309309
} elseif ($this->useWithAddon) {
310310
$id = "{$input}.closest('.input-group')";
311+
$val = "start.format('{$this->_format}') + '{$this->_separator}' + end.format('{$this->_format}')";
312+
if (ArrayHelper::getValue($this->pluginOptions, 'singleDatePicker', false)) {
313+
$val = "start.format('{$this->_format}')";
314+
}
311315
$this->callback = <<< JS
312316
function(start, end) {
313-
var val = start.format('{$this->_format}') + '{$this->_separator}' + end.format('{$this->_format}');
317+
var val = {$val};
314318
{$input}.val(val);
315319
{$input}.trigger('change');
316320
}

0 commit comments

Comments
 (0)
Please sign in to comment.