Requirement- We need to show value in input text into uppercase,lower or capitalize.There is a way to do this by setting contentStyle of the input text. Note: – This is only used in displaying.When you commit, it will save as what user entered in the input text. Using Java script – It will trigger the [...]

Well i am refering here the jsfutil class for my reference.this code doesn’t written by me.But it is very helpful for ADF developer. Happy coding with Vinay in Techartifact.

Well i am refering here the adf util class for my reference.this code doesn’t written by me.But it is very helpful for ADF developer. Happy coding with Vinay in Techartifact.

Requirment-valueChangeListener is not working on checkbox or SelectOneChoice in Oracle ADF Solution-While working in ADF project, normally we have checkbox or SelectOneChoice , radio buttons (af:selectOneRadio) and list of values ie., LOVs etc. when we wrote value change listener on it. everything seems to be perfect. but sometimes ,weird things happened in this world. our [...]

When we using JavaScript with ADF, the AdfPage.PAGE.findComponentByAbsoluteId() and AdfPage.PAGE.findComponent() are useful. -> Search by the component ID – use findComponentByAbsoluteId function -> Search in component that stamps its children – use findComponentByAbsoluteLocator function Relative Search -> Use findComponent function. This function searches the component clientId which can be renderer implementation specific. you can write [...]

In order to get things started you need to install the WebCenter extensions for JDeveloper, create a WebCenter Portal project and configure a Content Server connection to point to a running instance of UCM 11g.. Once you have these in place, you can start programming RIDC. I will describe below the most useful operations that [...]

Quick JSF tip- I found these two annotation really useful and very tricky too.It should be used at right time otherwise you will see error like me. @PostConstruct as per Oracle Doc-The PostConstruct annotation is used on a method that needs to be executed after dependency injection is done to perform any initialization. This method [...]

Requirment -I got task to accomplish to Search UCM using RIDC. Solution- After spending so much time on it.I got solution on some blog.Not recall the blog name.for my reference , i am writing here. We need to change some confi file which is in specified path – Oracle/middleware/userprojects/yourdomain/ucm/cs/config/confing.cfg There will be property name ‘SearchIndexerEngineName’ [...]

Confusion – Webcenter Portal vs Webcenter Spaces , which one to choose and when. Webcenter Spaces- WebCenter Spaces is designed to provide a collaborative environment. It integrates all the necessary services such as documents, discussions, events, linking, tagging.In WebCenter Spaces, you build group spaces. Each space is a separate mini-portal with its own configuration, look [...]

Small webenter tip- If we want to check whther a user if member of any group or space.Or role of the user. and etc etc following are el which i found today and usefull too.thats why i am sharing with you. WebCenterSecurityContextSupport -this interface Provides EL support for WebCenter Security. #{WCSecurityContext.userInScopedRole['Moderator']} – Checks if current [...]