For my project i need to customise JSPs existing in /jsp/actions directory. The URL seemed hard coded for me in BaseActionHandler.java and i made the following changes to it: protected static final String ACTION_PAGES_LOCATION = "/jsp/extension/actions";
but still my custom JSPs in extension/actions are not picked up. What am i missing? Any configurations? Please help
Instead of modifying in the BaseActionHandler class, you should override the getJSPPath method in the handler class of your custom action which should return the custom location of the jsp.
thanks romschn, yes, the way you are suggesting could also be the correct one. But after modifying BaseActionHandler, there was a configuration to be overridden in we-client-config-custom.xml, The RunAction Wizard.
thanks romschn, yes, the way you are suggesting could also be the correct one. But after modifying BaseActionHandler, there was a configuration to be overridden in we-client-config-custom.xml, The RunAction Wizard.