I am trying to use a progressbar for my grails application. I have a src/groovy/MyClass.groovy which does some function when called from a controller class called MyController. I need to show the progress of the work done by the MyClass.groovy on my MyWebpage.gsp when I click a submit button on the MyWebpage.gsp.
I referred to this but what I am not understanding is this part of the code:
<g:form>
<g:submitToRemote action="executeAction" name="progressButton" value="start...."/>
</g:form>
What is executeAction and progressButton in this? There is not much information given on the documentation. Sorry for this basic question. Also, if anyone knows of a better approach to show the progress, please let me know. Thanks.