Webcenter can be customezed in two ways
- User Interface
- Functionality
Webcenter Content comes with two menu types.
- Trays
- Top Menu (Don’t use Iframe , So Action is visible on URL i.e. IdcService=GET_DOC_PAGE)
Webcenter can be customezed in two ways
- User Interface
- Functionality
Webcenter Content comes with two menu types.
- Trays
- Top Menu (Don’t use Iframe , So Action is visible on URL i.e. IdcService=GET_DOC_PAGE)
Today I had interesting requirement about a hyperlink doing so many things at the same time.
-When you hover , it should show menu
-When you click , it should set some param in request scope , call java method and open hyperlink window in Internet Explorer
That sounds easy and I was able to achieve everything with commandLink except one : opening child window on top of parent window.
I was calling actionlistener method to write java code which has javascript call from managed bean which will ultimately call window.open() and open the window.
However , window.open opened the window and minimized it.
To solve this issue I had to take alternate route practically detour.
I wrote goLink which used following stuff inside.
golink (clientlistener , serverlistener , clientattribute )
ClientListener – calling javascript
ServerListener – Calling managed Bean method
clientattribute – setting param to access in managed bean
Golink – to open hyperlink in new window that will not hide
Due to this wonderful blog here , I was able to know that SVN Tortoise got upgraded and fix the issue.
However , When I open the project It threw following exception and I was unable to use Jdeveloper at all.
[IllegalStateException in o.i.explorer.IconOverLayTracker$NodeWatcher:802]
After few hours of trying so many things in jdeveloper , I found the solution that
I need to uncheck couple of option in Tools –> Preferences –> Versioning –> General to remove
some pain , But still I want to know the root cause of error and why I need to uncheck it.
1. Use Navigator State Overly Icons - Uncheck
2. Use Navigator State Overly Labels – Uncheck
This however solved my issue , But please comment if you have time to fix the root cause of problem.
In previous blog , I demonstrated how to develop simple ring subtype of graph for portraying employee by department. Now let me create multiple graph displaying same information.
Here is four different types of graph based for same data set.
Let us first develop simple DVT Component that will render count of employee for each department using various representation.
I am using following query using standard HR schema.
SELECT COUNT(*) , DEPARTMENT_NAME FROM EMPLOYEES E, DEPARTMENTS DWHERE D.DEPARTMENT_ID= E.DEPARTMENT_ID GROUP BY DEPARTMENT_NAME
When you drag/Drop datacontrol VO for pieGraph Grpah for subtype Ring ,It will create following binding in page definition after you provided configuration for graph slices.
When you Drag/Drop graph , It will ask you to provide configuration for Ring , Slices and I gave following.
Here is output of graph when you run the project.
Now you can use same data control object and try various types of graph instead of above.
ADF Data Visualization Components are expressive set of interactive ADF Faces components which depict the data in analytical format like Various Graph type like Pie ,Area , Bar , Funnel , Pareto , Stock , Line and much more.
All ADF DVT components support Data Control D&D feature.
Let us explore this powerful components in upcoming blogs.
If you are running Webcenter or ADF Application on latest window system with IE 10 browser you will get following message from IE when running application.
If you want to get rid of that you have to put following tag inside web.xml.
<context-param><param-name>oracle.adf.view.rich.HIDE_UNSUPPORTED_BROWSER_ALERTS</param-name><param-value>IECompatibilityModes</param-value></context-param>