I need to display a correct title for my kendo
confirmation box.
I have the following logic:
if ((Math.abs(newAmount) < Math.abs(Amount)) && newAmount != 0)
{
kendo.confirm(msg).then(function () {
SaveData();
}, function () {
});
}
else {
SaveData();
}
Every time confirmation is displayed I have "localhost" value in that.
How do I set it up, so it displays what I need.
I went through a lot of tutorials on Kendo
. There are different ways offered, however, in my case I need to use kendo.confirm
logic.
How do I do that?