Dear Experts,
We have a requirement to call default export component from custom JSP in webtop 6.5. so we tried to use below code for the same.
ActionService.execute("export", args, getContext(), null, null);
as the syntax is execute(String, ArgumentList, Context, Component, IActionCompleteListener).
I am getting error in getContext() argument so I want to get the current context in the JSP. I can easily get a context in component class or in container. But how can I get the context in the JSP. Also only first 3 arguments requires values or do I need to pass values for other two arguments as well(Component, IActionCompleteListener)?
OR Is there any other way to call default export component from custom jsp?
Any help will be highly appreciated.