Preventing execution of queries when page loads for first time (ADF)

Wednesday, February 11, 2009

Sometimes you want to prevent the automatic execution of a query when page loads for first time.

To achieve this ...

In ADF 10.1.3, add ${adfFacesContext.postback == true} to refresh condition of the iterator that displays the data in your page.

In ADF 11g, add #{!adfFacesContext.initialRender} to refresh condition of the iterator that displays the data in your page.

Read more...

How to prevent navigation thorugh browser back button using java script in ADF page

Tuesday, February 10, 2009

Add the following java script to Onload attribute of afh:body tag in ADF page.

if (history.forward() != null) history.forward()

Read more...

Showing confirm dialog box while cancelling transaction using java script in ADF page.

We come across a situation where we need the user to confirm before cancelling a transaction or confirm before deleting a record. Following example show how to achieve that in ADF page using a java script.

Let us say user is in employee creation page and he wants to cancel and go back to home page. On clicking Cancel button, a java script dialog box appears to confirm the action.


Add the following java script to the Cancel button “Onclick” java script events attribute.

if (confirm('Do you want to cancel?')) {return true;}else {return false;}

If the user clicks OK then Cancel button’s action will be called else Cancel button’s action will be ignored.

Pretty simple……..

Read more...

Best AJAX-based solution award goes to Oracle

Monday, February 02, 2009

SYS-CON Events offered all delegates at the 6th International AJAXWorld Conference & Expo in San Jose, CA, the opportunity to cast their vote for their favorite AJAX, RIA and Open Source technology provider in five highly competitive categories. The results have been announced, and they are as follows:

Best Overall Enterprise RIA Product
Winner: ICEsoft - ICEfaces

Best SDK
Winner: Adobe - Flex Builder 3

Best Rich Internet Platform
Winner: Adobe - Adobe Flash Platform

Best Open Source RIA Solution
Winner: Adobe Flex

Best AJAX-Based Solution
Winner: Oracle - Oracle JDeveloper 11g


Courtesy: http://linux.sys-con.com/node/808352/print

Read more...

Integrating ADF with Oracle Apps R12 - Demo

Though I have not tried integrating ADF with Oracle Apps R12, I came across a demo showing the integration. Hope this will be helpful.

Read more...

What is the difference between ADF and OAF?

Many times people ask me "What is the difference between ADF and OAF?".

This article will help you to differentiate both technologies.

Read more...

  © Blogger templates Newspaper by Ourblogtemplates.com 2008

Back to TOP