First I would like to congratulate you on this great plugin, keep up the good work.
My problem is with reloading data in IE (tested on v6 and v7). I have a select box to choose language of data and I call the function to load data on click of the button. In Firefox the grid refreshes and new data is shown. However in IE all that is shown is empty grid. If I change language back to initial and reload, the grid gets populated again.
function that reloads grid on language change:
function gridReload(){
var questionMask = jQuery(“#search_question”).val();
$(“#list”).setUrl(‘return_random_questions_admin.php?language=’ + id_language + ‘&question_mask=’+questionMask+’&nt=’ + (new Date().getTime()));
$(“#list”).setPage(1);
$(“#list”).trigger(“reloadGrid”);
}
Do you have any idea where I could look for problem?
TIA
Copyright 2014 TriRand LtdAll Rights ReservedRSS
Back to Top