easyadf.blogspot.com
Easy ADF: GOFJ : An article to bookmark asap
http://easyadf.blogspot.com/2009/05/gofj-article-to-bookmark-asap.html
Peregrination in Oracle ADF World. Specific Use-Case How-to - GOFJ vs Drag'n'drop - Application @ runtime - ADF in business. Mardi 5 mai 2009. GOFJ : An article to bookmark asap. Click and you'll know why it has to be bookmarked : click me! Libellés : application.utils. Java for ADF (aka GOFJ). Inscription à : Publier les commentaires (Atom). My rails3 and jquery blog. Oracle great knowledge base. Andrejus Baranovskis's Blog - JDev/ADF Samples list. Il y a 1 semaine. Java / Oracle SOA blog.
easyadf.blogspot.com
Easy ADF: JDeveloper : debug at runtime
http://easyadf.blogspot.com/2009/04/jdeveloper-debug-at-runtime.html
Peregrination in Oracle ADF World. Specific Use-Case How-to - GOFJ vs Drag'n'drop - Application @ runtime - ADF in business. Jeudi 16 avril 2009. JDeveloper : debug at runtime. I just discovered a neat functionnality, allowing you to easyly be aware of what's happening when you test-run you application. Now test-run your application : you'll see in the console everything the framework does, and I tell you, it's priceless when it comes to debugging at runtime. Libellés : Application at runtime. JDeveloper...
easyadf.blogspot.com
Easy ADF: GOFJ : Retrieving any bean with any scope
http://easyadf.blogspot.com/2009/05/gofj-retrieving-any-bean-with-any-scope.html
Peregrination in Oracle ADF World. Specific Use-Case How-to - GOFJ vs Drag'n'drop - Application @ runtime - ADF in business. Mardi 5 mai 2009. GOFJ : Retrieving any bean with any scope. We'll get back to that. For now I'll just introduce a way of retrieving your managed bean instance in any place of your project's java classes :. Public static Object retrieveManagedBean(String beanName, Class beanClass) {. FacesContext fc = FacesContext.getCurrentInstance();. ValueExpression ve = fc. Il y a 1 semaine.
easyadf.blogspot.com
Easy ADF: Weblogic : your basic needs
http://easyadf.blogspot.com/2009/04/weblogic-your-basic-needs.html
Peregrination in Oracle ADF World. Specific Use-Case How-to - GOFJ vs Drag'n'drop - Application @ runtime - ADF in business. Lundi 27 avril 2009. Weblogic : your basic needs. Weblogic is a big product, people may be affraid of it. Don't panic! For an web application (either web, either enterprise, either anything java-webbie), you just need five things :. 1 Having weblogic installed (that implies having a domain). 3 ADF Libraries installed and ready to go (when you create the domain). There you go :.
easyadf.blogspot.com
Easy ADF: mai 2009
http://easyadf.blogspot.com/2009_05_01_archive.html
Peregrination in Oracle ADF World. Specific Use-Case How-to - GOFJ vs Drag'n'drop - Application @ runtime - ADF in business. Lundi 25 mai 2009. Handling assigments with af:selectManyShuttle Master Detail Hierarchy. When you create a view object, you can choose attributes and let the one you don't want behind :. So, the af:selectManySchuttle is the adf components that implements this. But how do you populate it? For this test case, I’ve created a quite simple workspace. Let’s first take a ...An inconvenie...
easyadf.blogspot.com
Easy ADF: avril 2009
http://easyadf.blogspot.com/2009_04_01_archive.html
Peregrination in Oracle ADF World. Specific Use-Case How-to - GOFJ vs Drag'n'drop - Application @ runtime - ADF in business. Lundi 27 avril 2009. Weblogic : your basic needs. Weblogic is a big product, people may be affraid of it. Don't panic! For an web application (either web, either enterprise, either anything java-webbie), you just need five things :. 1 Having weblogic installed (that implies having a domain). 3 ADF Libraries installed and ready to go (when you create the domain). There you go :.
easyadf.blogspot.com
Easy ADF: Export dvt:pivotTable to Excel : yes, it's possible
http://easyadf.blogspot.com/2009/05/export-dvtpivottable-to-excel-yes-its.html
Peregrination in Oracle ADF World. Specific Use-Case How-to - GOFJ vs Drag'n'drop - Application @ runtime - ADF in business. Dimanche 10 mai 2009. Export dvt:pivotTable to Excel : yes, it's possible. Edit : there's a new component in the new JDeveloper version. You can view it in action here. I some time ago posted one OTN JDeveloper Forum. About how to export the content of a dvt:pivotTable to Excel. Unfortunatly, no reel response appears, even with the help of Frank Nimphius. The component pivot table ...
easyadf.blogspot.com
Easy ADF: ADF BC : Two ways of inserting rows
http://easyadf.blogspot.com/2009/04/adf-bc-two-ways-of-inserting-rows.html
Peregrination in Oracle ADF World. Specific Use-Case How-to - GOFJ vs Drag'n'drop - Application @ runtime - ADF in business. Mercredi 22 avril 2009. ADF BC : Two ways of inserting rows. Today I'm going to explain two methods for creating a new row. Public String myOwnCreateInsert Person (int pid, String pname). ViewObjectImpl vo = this.getPersonsUpdatable1();. Row r = vo.createRow();. RsetAttribute("PersonId", pid);. RsetAttribute("PersonName", pname);. ViewObjectImpl vo = this.getPersonsUpdatable1();.