File tree 2 files changed +6
-1
lines changed
2 files changed +6
-1
lines changed Original file line number Diff line number Diff line change @@ -6,6 +6,7 @@ Version 1.6.4
6
6
- (enh #43 ): Add Slovak translations.
7
7
- (bug #45 ): Correct MomentAsset dependency.
8
8
- (enh #46 ): Better defaulting of ` form-control ` CSS class.
9
+ - (enh #50 ): Enhancement for single date picker plugin functionality.
9
10
- (enh #51 ): Update to latest release of bootstrap-datarangepicker plugin.
10
11
11
12
Version 1.6.3
Original file line number Diff line number Diff line change @@ -308,9 +308,13 @@ function(start, end) {
308
308
JS ;
309
309
} elseif ($ this ->useWithAddon ) {
310
310
$ 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
+ }
311
315
$ this ->callback = <<< JS
312
316
function(start, end) {
313
- var val = start.format(' { $ this -> _format } ') + ' { $ this -> _separator } ' + end.format(' { $ this -> _format } ') ;
317
+ var val = { $ val } ;
314
318
{$ input }.val(val);
315
319
{$ input }.trigger('change');
316
320
}
You can’t perform that action at this time.
0 commit comments