In your function:
function ReIndexSearch()
{
jQuery("#notificationCaption").html("<%= ReIndexingMessage %>");
jQuery("#notificationCaption").show();
var data = {};
data.action = 'admin_reindex_search';
data.language = '<%= System.Threading.Thread.CurrentThread.CurrentCulture.ToString() %>';
jQuery.ajax({
type: "POST",
async: true,
url: "<%= AjaxHandlerPath %>",
dataType: "json",
data: (data),
success: function (data) {
jQuery("#notificationCaption").html(data.message);
jQuery("#notificationCaption").show().delay(4000).fadeOut('slow');
Made it here");
},
error: function (XMLHttpRequest, textStatus, errorThrown) {
},
beforeSend: function (xhr) {
},
complete: function (XMLHttpRequest, textStatus) {
}
});
}
If you look above - I added the alert within your code. It makes it to there.
No message though.
I tried a new dnn skin and same thing?