0

我想在提交答案后调用另一个提示,但.prompt内部LoadNewRecord函数没有出现。任何想法 ?

提交提示

$.prompt("Opening Recap with ID " + Recap[0][0].id + ".<br> Note: Any changes on Recap " + header.find("#recap_id").val() + " will not be saved.", {
  title: "WARNING",
  buttons: {
    "Continue": true,
    "Cancel": false
  },
  submit: function(e, v, m, f) {
    var Recap_status;
    if (v === true) {
      Recap_status = Recap[0][0].status;
      LoadNewRecord(Recap, header);
      return $("#error_history").hide();
    } else {
      return selectedRecap();
    }
  }
});

LoadNewRecord 函数中的提示:

if (period_lock >= getDateInput(Recap[0][0].recap_date) && Recap_status < 20) {
  setTimeout((function() {
    $.prompt("You are not allowed to make any changes for all documents before " + period_lock + ". Please contact your administrator for further information");
  }), 100);
}

注意:我setTimeout在阅读此问题后使用,但仍然无法正常工作..

如果我移除$.prompt内部LoadNewRecode或将其更改为alert一切正常。

4

1 回答 1

0

对于那些坚持这个问题的人,您需要做的就是在这里下载最新的即兴曲..

有关更多详细信息,您可以参考 Github 上的这篇文章。

于 2015-01-07T07:19:08.423 回答