Bug in IE

Bug in IE

brazbraz Posts: 12Questions: 0Answers: 0
edited March 2011 in Bug reports
Try to open next page:

[code]






jQuery(document).ready(function() {
jQuery("#main_table").dataTable( {
"bPaginate" : false,
"bFilter" : false,
"bSort" : false,
"bInfo" : false
});

});









Col 1
Col 2

















[/code]

The first radio should be checked by default.
Check second radio button manually.
Press "test".
Press browser "Back" button.

Expected:
Second radio is selected.

Result:
In FF, Safari, Chrome and Opera everything works as expected.
In IE8 the first radio is checked.

Any suggestions about fix fro IE ?

Replies

  • allanallan Posts: 61,740Questions: 1Answers: 10,111 Site admin
    I think this is an IE bug by the sounds of things rather than an issue with DataTables :-(. A work around is needed, although its not a work around that can be included in DataTables core since DataTables knows nothing about your form. One option is to store the form state in a cookie and then on page load, if the cookie exists set the form as required by the cookie. Probably require a little bit of work, but hopefully not too bad :-)

    Allan
This discussion has been closed.