If now I type “def” in first filter (H1 column).
after some second I lost the focus and now if I press backspace I go to previous page because I have lost the focus.
This issue occurs when I have adjust: “data” parameter and the column width change when the filter is executed.
Currently I have deactivated this settings. Before I create the datatable I use the method: webix.html.getTextSize to compute the maximum width of each columns.
That working fine.
For you proposition, I have tested and I have issue with IE 11.
With IE 11 the focus is good but the cursor is not in good position.
I have fixed this solution (by setup selectionEnd and selectionStart): http://webix.com/snippet/b7f752b3
As others explained, the culprit is the width auto “adjust” attribute of the columns configuration. As @song7749 mentioned, removing adjust:true after the table loads solve the issue.
I came up with the generic solution below:
on:{
onAfterLoad: function() {
for (var i in this.config.columns) {this.config.columns[i].adjust = false;}
}
Hi ,
In the datatable subview we are facing an issue with the search filter.
When we type something and leave a second gap the search filter is being outfocused.