Posts

Showing posts with the label JDeveloper 11.1.1.7

Adding default help provider to ADF application

Please read about HelpProvider documentation from ADF Docs. Now you can go and implement your default help provider in ADF App. Whenever there is requirement to override default behavior of the help topic text and basically want to override behavior to accept any random help text from ELExpressions. Here we need to override some classes and make few configuration entries in adf-settings.xml file. 1. Extend HelpTopic class and override methods. Code should look something like  below.   1 package com.custom;   2    3 import javax.faces.component.UIComponent;   4 import javax.faces.context.FacesContext;   5    6    7 import com.custom.HelpTopic;   8    9 /**  10  * EPM help provider for help topic ids.  11  */  12 public class DefaultELHelpProvider extends HelpProvider {  13     /**  14      * Default constructor.  ...