You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Apr 2, 2019. It is now read-only.
In /lib/Backgrid.js 1403 to 1506 (omitting fluff)
var SelectCellEditor = Backgrid.SelectCellEditor = CellEditor.extend({
events: {
"change": "save",
"blur": "close",
"keydown": "close"
}
save: function (e) {
var model = this.model;
var column = this.column;
model.set(column.get("name"), this.formatter.toRaw(this.$el.val(), model));
}
Other CellEditors.save pass e to a command object, which is then passed to a model trigger call. This one doesn't and when I add that in on my local versh, it fixes the issue from my perspective.
I hope this is helpful.
The text was updated successfully, but these errors were encountered:
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Current version shows
Other CellEditors.save pass e to a command object, which is then passed to a model trigger call. This one doesn't and when I add that in on my local versh, it fixes the issue from my perspective.
I hope this is helpful.
The text was updated successfully, but these errors were encountered: