Table disappears in Internet Explorer on leaving a drop-down list
Table disappears in Internet Explorer on leaving a drop-down list
sydneyos
Posts: 7Questions: 0Answers: 0
Searched on this and didn't find anything. Here is the setting:
This is a page with two tables, rendered manually in an ASP.NET MVC page with DataTables applied on document ready. The document also has other controls (text box, drop-down list, buttons). In internet explorer, if the focus is set to the drop-down list and then the user tabs or clicks out of it, the tables disappear. This doesn't happen w/Mozilla, and it doesn't happen if DataTables are not applied to the tables.
There is no javascript attached to the drop-down list in question.
Any ideas where to start looking greatly appreciated.
Not sure what code might help, but here's the initialization bit:
$(document).ready(function () {
uTable = $("#UnenrolledStudents").dataTable({
"bPaginate": false,
"bLengthChange": false,
"bFilter": false,
"bSort": false,
"bInfo": false,
"bAutoWidth": true,
"bStateSave": true,
"bSearch": false
});
eTable = $("#EnrolledStudents").dataTable({
"bPaginate": false,
"bLengthChange": false,
"bFilter": false,
"bSort": false,
"bInfo": false,
"bAutoWidth": true,
"bStateSave": true,
"bSearch": false
});
Thanks
This is a page with two tables, rendered manually in an ASP.NET MVC page with DataTables applied on document ready. The document also has other controls (text box, drop-down list, buttons). In internet explorer, if the focus is set to the drop-down list and then the user tabs or clicks out of it, the tables disappear. This doesn't happen w/Mozilla, and it doesn't happen if DataTables are not applied to the tables.
There is no javascript attached to the drop-down list in question.
Any ideas where to start looking greatly appreciated.
Not sure what code might help, but here's the initialization bit:
$(document).ready(function () {
uTable = $("#UnenrolledStudents").dataTable({
"bPaginate": false,
"bLengthChange": false,
"bFilter": false,
"bSort": false,
"bInfo": false,
"bAutoWidth": true,
"bStateSave": true,
"bSearch": false
});
eTable = $("#EnrolledStudents").dataTable({
"bPaginate": false,
"bLengthChange": false,
"bFilter": false,
"bSort": false,
"bInfo": false,
"bAutoWidth": true,
"bStateSave": true,
"bSearch": false
});
Thanks
This discussion has been closed.
Replies
Allan
Allan
[Edit - site info removed]
Sign in --> Manage Classes --> Edit --> set focus to drop-down list --> click elsewhere on the page.
Thanks!
Allan