cancel
Showing results for 
Search instead for 
Did you mean: 

How to call a Bean from Freemarker template

munwar
Champ in-the-making
Champ in-the-making
We can call the action listeners such as the following one
actionListener="#{ClipboardBean.copyNode}"from browse.jsp, preview-space.jsp etc jsp files.

I am working on a web-client where I need to call "actionListener="#{ClipboardBean.copyNode}" kind of bean method from the freemarker template by supplying required parameter such as Node Id.

How can I call a bean method from freemarker template?
1 REPLY 1

kevinr
Star Contributor
Star Contributor
Hello,

I'm not sure exactly what you mean here - by "call" do you mean generate the HTML for an action which is then clickable or do you mean actually run an action directly from the template while it is executing? If you mean running an action during template execution then generally you can't do this kind of thing in a template - for starters the template engine executes within the server (e.g. not within the web-client itself) and has no access to client-side action code.

However if you are talking about generating URLs for client actions, then we currently have a few actions that work via the ExternalAccessServlet , there is support to generate Document Details, Space Details and Browse URLs - but more could be added. Examples of this can be seen in some of the example templates provided such as my_spaces.ftl.

It sounds like you would get a lot out of the new JavaScript engine in 1.3 - this is more suitable for executing actions or similar.

Thanks,

Kevin