Skip to content

Commit

Permalink
Fix wenzhixin#3063 - create id on datepicker fields, use it to set value
Browse files Browse the repository at this point in the history
  • Loading branch information
jorisvandermeerschroots committed Apr 4, 2017
1 parent 4228fa6 commit 4641beb
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -257,7 +257,7 @@
if (column.searchable && that.options.filterTemplate[nameControl]) {
addedFilterControl = true;
isVisible = 'visible';
html.push(that.options.filterTemplate[nameControl](that, column.field, isVisible, column.filterControlPlaceholder ? column.filterControlPlaceholder : ""));
html.push(that.options.filterTemplate[nameControl](that, column.field, isVisible, column.filterControlPlaceholder ? column.filterControlPlaceholder : "", "filter-control-" + i));
}
}

Expand Down Expand Up @@ -355,7 +355,7 @@
if (column.filterControl !== undefined && column.filterControl.toLowerCase() === 'datepicker') {
header.find('.date-filter-control.bootstrap-table-filter-control-' + column.field).datepicker(column.filterDatepickerOptions)
.on('changeDate', function (e) {
$(sprintf(".%s", e.currentTarget.classList.toString().split(" ").join("."))).val(e.currentTarget.value);
$(sprintf("#%s", e.currentTarget.id)).val(e.currentTarget.value);
//Fired the keyup event
$(e.currentTarget).keyup();
});
Expand Down

0 comments on commit 4641beb

Please sign in to comment.