datatables [1.10] : filter : ie 9 : undo (ctrl+z) : problem
datatables [1.10] : filter : ie 9 : undo (ctrl+z) : problem
as_dniel
Posts: 2Questions: 1Answers: 0
Hi,
My problem (step by step)
1 : I have a datatable
http://i57.tinypic.com/ml2veh.jpg
2 : I use the search input (filter)
http://i62.tinypic.com/nz57rq.jpg
3 : I press [ctrl+z] (undo)
http://i62.tinypic.com/2ebu9tl.jpg
Result :
the datatable layout crashs.
Have you a solution for this problem ?
Or how can i deactivate [ctrl+z] for the search (filter) input ?
I use :
- datatables.js : 1.10
- jquery : 1.10.2
- internet explorer : 9
This discussion has been closed.
Answers
I haven't solved my problem, but i have deactivated the [ctrl+z] event like this :
$(document).keydown(function (e) {
if (e.keyCode == 90 && e.ctrlKey)
{
return false;
}
});