最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - Capture onClose event for Spreadsheet App Modal Dialog in Google Apps Script - Stack Overflow

programmeradmin1浏览0评论

I want to do something when the Modal Dialog (opened using showModalDialog()) is closed from the Spreadsheet App.

However I cannot find the reference of such event, in the API documents provided by Google. I found how to capture this event in a Alert Box, and by using this piece of code I can capture how the user closed the Alert Box, but I cannot use this in a Modal Dialog or a Modeless Dialog.

Is there a way to do this? Please kindly answer if you do.

I want to do something when the Modal Dialog (opened using showModalDialog()) is closed from the Spreadsheet App.

However I cannot find the reference of such event, in the API documents provided by Google. I found how to capture this event in a Alert Box, and by using this piece of code I can capture how the user closed the Alert Box, but I cannot use this in a Modal Dialog or a Modeless Dialog.

Is there a way to do this? Please kindly answer if you do.

Share Improve this question edited Jul 22, 2024 at 20:52 Wicket 38.7k9 gold badges79 silver badges194 bronze badges asked Sep 29, 2014 at 3:33 albusshinalbusshin 4,0103 gold badges32 silver badges59 bronze badges
Add a ment  | 

2 Answers 2

Reset to default 9 +50

This is not possible. And you should write your script in a way that this does not matter. For example, by showing a big action button in the dialog, making it clear to the user that he must click there for the script to continue.

But if you really want to make this happen, I guess you could use an HtmlService dialog that make regular async calls to the backend and each call waits for the next one before quitting, then if the "next" call does not get in time, it can assume the dialog got closed and execute your close procedure instead of simply quitting.

Here's an alternative solution. You can use google hosted jquery in the HTML (served by GAS) to track unload events when the page is closed. Here is some sample code:

<!DOCTYPE html>
<html>
  <head>
    <base target="_top">
  </head>
  <body>
    <!-- page content -->
  </body>

  <!-- Minified google hosted jquery (see https://developers.google./speed/libraries/)-->
  <script src="https://ajax.googleapis./ajax/libs/jquery/3.2.1/jquery.min.js"></script>

  <!-- And here's where the magic happens -->
  <script type="text/javascript">
    $(document).ready( e => {
      console.log('-- DOM ready --');

      /** Add jquery unload listener */
      $(window).on('unload', e => {
        console.log("Invoked just before unload");
        // do pre-unload stuff
      });
    });
  </script>
</html>
发布评论

评论列表(0)

  1. 暂无评论