In grid column hyperlink click event I m calling following method to open popup window. but it is not showing any error.
function
test(e) {
//the DOM element (<tr>) representing the row which is being databound
alert(
"test->" + e);
$.ajax({
url:
'/Test/TestDetail',
type:
'POST',
dataType:
'html',
data:
"{ }",
success:
function (resultData) {
//alert("succ-->" + resultData)
var windowElement = $.telerik.window.create({
title:
"Insert image",
html:
"Are you sure you wish to continue?",
modal:
true,
resizable:
false,
Visible:
false,
draggable:
true
}).data(
'tWindow');
dialog.center().open();
},
error:
function (xhr, ajaxOptions, thrownError) {
alert(xhr.status +
'ajaxOptions-->' + ajaxOptions + 'thrownError->' + thrownError);
//alert(xhr.status);
//alert(thrownError);
}
});
Please help me for this issue.