apapa
1
Hi,
We can resize, reorder, filter and change pager size on IE 11, WIN: 8. Then we refresh the page and they are still there. +1
But when we show/hide columns and refresh again then all the previous(resize, reorder, pager size) are gone and datatable looks problematic.
apapa
2
apapa
3
Now I tested on 4.1 version but still exist.
apapa
4
Investigation on webix 4.1
We have checkboxes to show/hide each columns.
Error about the firstchild seems to be produced from this code
}),t.refresh()}},render:function(t,e){
return"<input type='checkbox' "+(e.checked?"checked='1'":"")+">"}},
textFilter:{getInputNode:function(t){
return t.firstChild.firstChild
},getValue:function(t){return this.getInputNode(t).value},setValue:function(t,e){this.getInputNode(t).value=e},refresh:function(t,e,i){
apapa
5
I want to buy the tool but need to work also in Internet Explorer 11. This issue is what I have found until now.
apapa
6
We have achieved to catch the error coding
textFilter:{
getInputNode: function(t) {
if (t.firstChild === null) {
return {};
} else {
return t.firstChild.firstChild;
}
},
apapa
7
And the Snippet
Just click on checkBox to hide the Title Column on Internet Explorer 11
Have the console open for the error.
http://webix.com/snippet/7f41e0cd
Maria
8
Hello,
we will fix the problem in the next update. Thank you for the report.