Fixing IOTS-159: Adding meaningfull messages

revert-dabc3590
Rasika Perera 8 years ago
parent 579c434176
commit 32a9ff18ac

@ -61,9 +61,15 @@ function submitForm(formId) {
var statusIcon = content.find("#status-icon"); var statusIcon = content.find("#status-icon");
var description = content.find("#description"); var description = content.find("#description");
var successCallBack = function (response) { var successCallBack = function (response) {
var res = response;
try {
res = JSON.parse(response).messageFromServer;
} catch (err) {
//do nothing
}
title.html("Response Received!"); title.html("Response Received!");
statusIcon.attr("class", defaultStatusClasses + " fw-success"); statusIcon.attr("class", defaultStatusClasses + " fw-check");
description.html(response); description.html(res);
$(modalPopupContent).html(content.html()); $(modalPopupContent).html(content.html());
}; };
var errorCallBack = function (response) { var errorCallBack = function (response) {
@ -94,9 +100,9 @@ function submitForm(formId) {
$(document).on('submit', 'form', function (e) { $(document).on('submit', 'form', function (e) {
e.preventDefault(); e.preventDefault();
var postOperationRequest = $.ajax({ var postOperationRequest = $.ajax({
url: $(this).attr("action") + '&' + $(this).serialize(), url: $(this).attr("action") + '&' + $(this).serialize(),
method: "post" method: "post"
}); });
var btnSubmit = $('#btnSend', this); var btnSubmit = $('#btnSend', this);
btnSubmit.addClass('hidden'); btnSubmit.addClass('hidden');

Loading…
Cancel
Save