Archive for the ‘JDeveloper’ Category

usesUpload=”true”

Tuesday, April 21st, 2009

Whenever you use an inputFile component in a JSF page, don’t forget to set usesUpload of the form to true.
I think JDeveloper should do this automagically whenever you drag it in.

But it doesn’t, so this is a reminder

Datasources in Weblogic

Tuesday, March 17th, 2009

Yay for JDeveloper 11g and Weblogic. I have to learn everything all over again. Like datasources. These are the things I need to think about when creating a datasource in Weblogic:

- In the target section I need to tick the AdminServer checkbox.

- The JNDI name of the datasource should be jdbc/somethingDS

- The name of the connection in JDeveloper should also be “something” (don’t know why)

ADF JSF : selected row in a table, get rid of it

Tuesday, May 1st, 2007

By default, when creating a table with the wizard and indicating that selection is possible, JDeveloper creates an option in your table that always selects the first row when entering the page. This is the following line:

selectionState=”….”

If you delete this option, no rows are selected when you first load the page.