Calling library function from html in that library
问题 In order to share with my colleagues the AppsScript code I am developing, I created a standalone project used as a library in our Docs template. This library contains: a .gs file for the server side code a .html file for the client side sidebar In the sidebar, I have a button which triggers a call to a function from the library with a parameter. The javascript call is the following: google.script.run .withFailureHandler( function(msg, element) { showError(msg, $('#button-bar')); }) .test(); I