This is the library I'm using.
http://code.google.com/p/flot/downloads/detail?name=flot-0.7.zip&can=2&q=I'm loading partial view content to a div. Problem occurs when reloading the partial view after doing some modification from a pop-up window. Again this problem only happens in IE. (Only in IE)
Following is the error:
"Microsoft JScript runtime error: Unable to get value of the property 'shutdown': object is null or undefined"
throws by the following line: in "jquery.flot.js"
"// run shutdown in the old plot object
placeholder.data("plot").shutdown(); "
This is how I'm loading the partial view for the second time:
$.getJSON("/Main/AircraftSelectionData", dataSet, function (data) {
if (data) {
$('#myDiv').load('/main/rpmotion');
$("#modalPopup").hide();
}
});
"myDiv" is the div, I needs to reload
Thanks a lot