This question is locked. New answers and comments are not allowed.
Hi,
we are developing a site in this we are using telerik's mvc charts, it is working fine.
But i need to get the html of these charts using jquery's ajax method like
$.ajax({
type: 'post',
async: true,
url: '/pagename/functionname?param1=' + $('#txtEmail').val() + '¶m2=391',
success: function (data) {
debugger;
if (data != "") {
return false;
}
},
error: function (jqXHR, textStatus, errorThrown) {
alert("error");
}
});
Above function is in one page and we are getting html from different page.
In data, we are getting html but not telerik's charts in html. Please help me on this. Thanks in Advance
Regards
Nitin Yadav
we are developing a site in this we are using telerik's mvc charts, it is working fine.
But i need to get the html of these charts using jquery's ajax method like
$.ajax({
type: 'post',
async: true,
url: '/pagename/functionname?param1=' + $('#txtEmail').val() + '¶m2=391',
success: function (data) {
debugger;
if (data != "") {
return false;
}
},
error: function (jqXHR, textStatus, errorThrown) {
alert("error");
}
});
Above function is in one page and we are getting html from different page.
In data, we are getting html but not telerik's charts in html. Please help me on this. Thanks in Advance
Regards
Nitin Yadav