SlideShare a Scribd company logo
1 of 61
ORACLE ADF - ONLINE TRAINING | E-
LEARNING AND PLACEMENT
Online | classroom| Corporate
Training | certifications | placements| support
CONTACT US:
MAGNIFIC TRAINING
INDIA +91-9052666559
USA : +1-678-693-3475
info@magnifictraining.com
www.magnifictraining.com
OVERVIEW
• IDE favorites
• Fool‟s Gold
• UI (tw)Highlights
• The Whole Wide World
WHAT IS A GOLD NUGGET?
• Unexpected benefit
• Underused, overlooked feature
– Small – frequently useful
– Huge – unexplored concept or area of infrastructure
• Potentially useful to large community
– Not too much a niche option
NUGGET CLOUD
Refresh after insert
Groovy
so aDF
JHeadstartPPR
DVT
DecoupledDevelopment&Reuse
TaskFlow,Region,UIShell,DeclarativeComponents,ADFLibrary,…
active rowkey
prepareSession
Java/JEE
Fusion Applications
EMG and wider community
OraFormsFaces
Popup
Change Persistence
AutoSuggest
PanelCollection
ADFContext
OPSS/ADF Security
TreeSelect
VO Updateable Lookup
Multi Browser Support
server event & listener
Listvalidator
FormatString
Selenium
Hot Reload
Customization
PanelDashboard
Programmatic VO
Bean Data Control
setPropertyListener
ActiveDataServiceforPush
RichTable
WebLogicServer
EL
SavePoints
PageTemplate
Skin editor
ADF IN LARRY‟S KEYNOTE
ON ORACLE OPEN WORLD 2009 AND 2010
THE TABLE
• ADF Faces
Rich Table (& Panel Collection)
– Displays ADF Model data bound collection, bean array,
List, ResultSet, RowSet and more
– Dynamic Table Configuration & Change Persistence
• Rearrange, resize, hide/show columns, freeze columns
– Post-load or Lazy Data Fetch
– Fetch data rows upon scroll
– Filter & Sort
– Read-Only and Click-to-edit
– [single or multiple] Row and Column Selection
– Header, Footer, Column Grouping, DetailStamp
– Many, many predefined facets
– Export data set, Email & Print mode
ACTIVE ROW KEY
• Property on table that is „click to edit‟
• EL expression that resolves to the primary key of the
row that should be displayed as editable
– Table will scroll that row into view
"SMART" COMPLETION INSIGHT
Ctrl-Space (x 2)
public class AppModuleImpl extends ApplicationModuleImpl
{
public BookingsViewImpl getBookingsView1() {
return
(BookingsViewImpl)findViewObjects("BookingsView1");
}
}
public class AppModuleImpl extends ApplicationModuleImpl
{
public BookingsViewImpl getBookingsView1() {
return
(BookingsViewImpl)findViewObjects("BookingsView1");
}
public void doSomething() {
}
}
public class AppModuleImpl extends ApplicationModuleImpl
{
public BookingsViewImpl getBookingsView1() {
return
(BookingsViewImpl)findViewObjects("BookingsView1");
}
public void doSomething() {
this.
}
}
public class AppModuleImpl extends ApplicationModuleImpl
{
public BookingsViewImpl getBookingsView1() {
return
(BookingsViewImpl)findViewObjects("BookingsView1");
}
public void doSomething() {
this.
}
}
public class AppModuleImpl extends ApplicationModuleImpl
{
public BookingsViewImpl getBookingsView1() {
return
(BookingsViewImpl)findViewObjects("BookingsView1");
}
public void doSomething() {
this.getB
}
}
public class AppModuleImpl extends ApplicationModuleImpl
{
public BookingsViewImpl getBookingsView1() {
return
(BookingsViewImpl)findViewObjects("BookingsView1");
}
public void doSomething() {
this.getBookingView1Impl()
}
}
public class AppModuleImpl extends ApplicationModuleImpl
{
public BookingsViewImpl getBookingsView1() {
return
(BookingsViewImpl)findViewObjects("BookingsView1");
}
public void doSomething() {
? = this.getBookingView1Impl()
}
}
public class AppModuleImpl extends ApplicationModuleImpl
{
public BookingsViewImpl getBookingsView1() {
return
(BookingsViewImpl)findViewObjects("BookingsView1");
}
public void doSomething() {
this.getB
}
}
public class AppModuleImpl extends ApplicationModuleImpl
{
public BookingsViewImpl getBookingsView1() {
return
(BookingsViewImpl)findViewObjects("BookingsView1");
}
public void doSomething() {
this.getB
}
}
public class AppModuleImpl extends ApplicationModuleImpl
{
public BookingsViewImpl getBookingsView1() {
return
(BookingsViewImpl)findViewObjects("BookingsView1");
}
public void doSomething() {
BookingsViewImpl bookingsView =
this.getBookingsView1();
}
}
JDEVELOPER GO TO SHORTCUTS
• Go to Class: CTRL -
• Go to File: CTRL ALT -
• Find usages: CTRL ALT u
– For class, method,
EO and VO Attribute, …
MORE BEST SHORT CUTS…
• CTRL Shift Space: parameter insight
• CTRL = : list of recently opened files
• CTRL Space: completion insight
• CTRL Space (2x): declaration insert
• CTRL /: selection commented
• CTRL Shift C:
copy file path to
Clipboard
• Alt Home :
select
file in „tree‟
DATA VISUALIZATION
THE RIGHT MOUSE CLICK
• ContextMenu client listener
and
Popup (menu and window)
POPUP MAGIC
EXAMPLE: ADDING FANCY
BALLOON HELP
• Create a popup with a noteWindow child to
contain the fancy
help content
• Add a showPopupBehavior tag to the inputText
that we want to add the help to
EXPRESSION LANGUAGE
• IoC: Injection of Value and Listener into page
• Dynamic, context sensitive behavior
• Extension points
– Custom Functions invoked from EL
– Integration of Spring Beans
– Custom EL Resolver
• To resolve values from property files, ….
EVEN MORE DECLARATIVE ADF
DEVELOPMENT – WITH JHEADSTART
PROGRAMMATIC CROSS TIER
INTERACTION
Web Browser
JEE Application Server
Client
Server
(middle tier)
Database
JavaScript Components
ComponentsBeans & Objects
activeOutputText
Active Data
Model
activeOutputText
push
serverListener
Bean
Load JSON, CSS,
Image, XML, JSRequest
data or
Push
message
push (DB QRCN)
Object
clientListener
component
serverListener
partial
page
refresh
partialSubmit
autoSubmit
JavaScript
Function
Queue Custom
Event
component
component
manipulate
poll
setPropertyListener
user
or
programmatic
action
add JS to
execute
(ERKS) add
components
as partial target
ERKS
‘ppr script’
actionListener,
valueChangeListener,
…Listener
component
component
Full page
reload
CLIENT SERVER INTERACTIONS VV.
USE SETPROPERTYLISTENER
TO PUSH DATA TO THE SERVER
• The setPropertyListener will pass
from value to the to target
when type event occurs on parent
– A very simple way to inform the
server about an event and the data
associated with the event
– Supported types: action, focus,
poll, query, rangeChange, selection, sort, rowDisclosure,
valueChange and many more
<af:image id="removeFromSetImage“
source="/images/removeFromSet.png“
shortDesc="Remove from Shopping Basket"/>
<af:setPropertyListener from="#{item}“
to="#{shoppingBasket.itemToRemove}"
type="action"/>
</af:commandLink>
SERVERLISTENER FOR CUSTOM AJAX
(BACKGROUND CLIENT TO SERVER
PUSH)
• A serverListener associates a
server side method with a
client side custom event
– This allows JavaScript functions
to call a server side method by queuing an event
– A custom event carries a payload
ADF ACTIVE DATA SERVICE –
SERVER PUSH TO CLIENT
• Push: server sends messages to client
• ADF Active Data Service enables UI components to
be „automatically refreshed‟ when server side events
occur
• Active UI Components include Table, Image,
OutputText, DVT Components
– Based on BAM Data Control
– Based on Custom Beans
that extend ActiveAdapter
• Nudge: push-to-refresh
• Note: client-2-client push
can easily be implemented
as client-to-server-followed-
by-server-to-client push
Web Browser
JEE Application Server
AUTO-PPR FOR IMMEDIATE REFRESH OF
DATA BOUND COMPONENTS
• To have ADF automatically refresh
data bound components when underlying
value binding has changed its value
• Set changeEventPolicy=ppr on iterator
– Refresh as piggy back on any request cycle
– No partialTriggers attribute required!
CROSS TIER PUSH
Web Browser
RDBMS
JEE Application Server
trg
job
servlet
activeOT
evt lsnr
Cache
refresher
table
THE “HISTORY” FEATURE IN JDEVELOPER
• Quick comparison of file with previous states
– Can leverage Source Code Control system
(Subversion, CVS) but also maintains local file history
– The compare feature is ‘XML aware’
• Revert to a previous state of a file
MARRYING FORMS AND ADF TOGETHER –
MIGRATE WITH (i/o FROM) FORMS TO ADF
• OraFormsFaces leveraging the JavaScript-Applet
bridge for two-way event exchange
ADF BC PROPERTIES
Property Inspector
LIBRARY PRIVATE
JAVA AND JEE
• ADF is a framework on top of Java, JEE and JVM
• Anything that is/extends/runs on one of these is
potentially usable with and relevant for ADF
• Zillion frameworks and libraries
– iText (PDF), Apache POI (Excel), Jasper Reports, BIRT
– Spring (IoC, AOP, Acegi/Security, Social, ..)
– Apache Commons, Google Collections, Joda Time
• Software Engineering
– Test (Junit, EasyMock), build (Ant, Maven), check/QA
(FindBugs, CheckStyle, Sonar),
• JEE facilities in WLS including JMS, WS* & RS, JMX…
• Dynamic JVM languages: Groovy, Scala, JRuby, …
• Java 7 SE and beyond
• Java FX?
PREPARE SESSION
• Before any other database communication is
performed during the processing of a request …
• ADF BC will execute the prepareSession() method that
you can override in ApplicationModuleImpl
• This is the perfect place to
– Reset package state
– Set application and client info
– Set application context
• User details, current session
context, view filter conditions
(real or poor man VPD)
– Fetch any events published
inside the database
Database
ADF BC
AppMod
CHALLENGE
• Create a Sliding Tile puzzle that tiles up an image in a
configurable number of tiles
• Using drag and drop, the user can reassemble the
image
STEPS
• Create Servlet that produces tiles from a JPEG
image
– Parameters: image name, tile factor, x and y
• Create PanelDashboard with panelBoxes with
richImage components
– That request their source from the servlet
corresponding to their position in the grid
• Bind the PanelDashboard and dynamically create
the panelBox components
• Allow user to set the tile factor and choose the
image
– Use a Carousel for image selection
DEMO
ED
N
Task
UI
SDO
Entity
EDN
Events
SO ADF
•EDN Events from ADF BC
•BAM Data Control
•Human Task UI
•ADF BC SDO Service
•WebService Proxy and Data Control
ADF TO SOA INTERACTIONS IN FAPPS
Business LogicView Data
OrchestrationHuman interaction Policy evaluationMonitoring
Rules
EngineAssign
Task
Task
Complete
Human Workflow
Service
Mediator /BPEL
Process
results
facts
Business
Activity
Monitoring
Business Services
ADF Business Components
Data
Binding
SDO Services
Database
Schema
Events
User Interface
ADF Faces
components
WebCenter
PROGRAMMATIC VIEW OBJECT
• It walks, talks and looks like a „regular‟ View Object
– (regular being based on Entity Objects or SQL Query)
• But it is entirely fueled by custom written overridden
Java methods – possibly without database connection
– A bit like a View with Instead Of trigger – against a
Collection based Table Function and PL/SQL API
• Programmatic View Objects can be used as normal in
a Data Control for binding ADF Faces components
• Normal rich declarative ADF BC data binding can be
provided to UI developers for data sources such as
– WebService, JMS Queue, Memory Grid, Document
Management System, Email, cross session data, …
• Note: with the evolution of the Bean Data Control,
some of the use cases will fade away
THE ROOT OF AJAX
Suggestions
AUTO SUGGESTIONS
• User is entering a field
– As she types characters,
suggestions can be
presented for what the full entry should read
• Based on a list of allowable values, based on
previous (popular) entries or anything really
– User can pick a suggestion for ‘short-cut typing’
• Auto suggestions can be model-driven (declarative) or
custom
– And can do things beyond plain list based suggestions
INTRO
• Google Suggest set off the AJAX hype in anger
• Many implementations for a „suggestions‟ feature
in ADF 10g and 11g have been created
– Using custom JavaScript or libraries like Jquery
• With PS1, ADF 11g introduced a native
component for „auto suggestions‟
– The <af:autoSuggestBehavior> component, to be
included in inputText or inputListOfValues or
inputComboboxListOfValues
MODEL DRIVEN SUGGESTIONS
• The suggestions can be derived declaratively
from List of Values reference on a VO Attribute
• Steps:
– On ViewObject
• Create ViewAccessor (for list values)
• Create List of Values for Attribute
• Link LoV to ViewAccessor
– In Page
• Add InputListOfValues component based on attribute
• Add af:autoSuggestBehavior with suggestions based on
List of Values Binding’s suggestedItems
IN PAGE:
CUSTOM SUGGESTIONS
• Auto Suggestions can be provided by managed
bean that implements signature:
– List getSuggestions( String currentValue)
• And the List returned is really List<SelectItem>
• Potential use cases
– Based on some (application wide) cached
collection (of previously entered ?) values
– Retrieve values from WebService, file, …
– Use common abbreviations, codes
• Country code, airport
– Show translations in other languages
STATIC LIST OF COUNTRIES
Suggestions
SUGGESTIONS … OR?
• Suggested Values do not need to be suggestions in a
very literal sense
– What you see may not be what you get
– The SelectItem as a label (WYS) and a value (ISWYG)
• Examples:
– Add words to field instead of replacing value
– Perform selected
operation on value
– Show an updated
indicator based
on the value
PAGE TEMPLATE
• Turns page layout inside out:
– the page references the template
– the page template determines the overall structure
– the page provides the content for the designated areas
in the template (through the facets)
• Can be dynamically, context-sensitively selected using
an EL expression
• Can also be used for areas within a page
– With multiple page templates used within the same
page
– More an area template than a page template to define
UI Design Patterns
• Tree-with-Detail-Form, Table-and-Chart, Master-Form-
Detail-Table, Search block-Results table…
USING MULTIPLE PAGE TEMPLATES
• Two templates: mainpage and Table-Form template
OTHER PAGE CONSUMING THE
TEMPLATE(S)
CHANGING THE MICRO-TEMPLATE
SUMMARY
• Twinkle, twinkle little stars…
– #1 nugget
– #2 nugget
– #3 nugget
• Don‟t give up [too soon]
– There is more in ADF than meets the eye
– There is a world of Java/JEE to leverage
– There is a community to lean on
• Scan release notes and monitor blog-o-sphere for
valuable new (and re-discovered) nuggets
• Share! Yes, you too! Your findings are just as valuable.
– Participate in EMG and OTN Forum discussions, write
blog articles, present in conferences, …
QUESTION & ANSWERS
SHOULD YOU REQUIRE ANY FURTHER
INFORMATION PLEASE DO NOT HESITATE
TO
CONTACT US
• http://www.oraclecourseonline.com
• -oracle fusion adf online training
contact us:
• info@magnifictraining.com or +919052666559
• By Real Time Experts from Hyderabad,
• Bangalore
• ,India,USA,Canada,UK, Australia,South
• Africa.
Oracle adf   online training  e-learning and placement

More Related Content

Recently uploaded

Millenials and Fillennials (Ethical Challenge and Responses).pptx
Millenials and Fillennials (Ethical Challenge and Responses).pptxMillenials and Fillennials (Ethical Challenge and Responses).pptx
Millenials and Fillennials (Ethical Challenge and Responses).pptxJanEmmanBrigoli
 
Concurrency Control in Database Management system
Concurrency Control in Database Management systemConcurrency Control in Database Management system
Concurrency Control in Database Management systemChristalin Nelson
 
ClimART Action | eTwinning Project
ClimART Action    |    eTwinning ProjectClimART Action    |    eTwinning Project
ClimART Action | eTwinning Projectjordimapav
 
How to Add Barcode on PDF Report in Odoo 17
How to Add Barcode on PDF Report in Odoo 17How to Add Barcode on PDF Report in Odoo 17
How to Add Barcode on PDF Report in Odoo 17Celine George
 
THEORIES OF ORGANIZATION-PUBLIC ADMINISTRATION
THEORIES OF ORGANIZATION-PUBLIC ADMINISTRATIONTHEORIES OF ORGANIZATION-PUBLIC ADMINISTRATION
THEORIES OF ORGANIZATION-PUBLIC ADMINISTRATIONHumphrey A Beña
 
Daily Lesson Plan in Mathematics Quarter 4
Daily Lesson Plan in Mathematics Quarter 4Daily Lesson Plan in Mathematics Quarter 4
Daily Lesson Plan in Mathematics Quarter 4JOYLYNSAMANIEGO
 
4.16.24 21st Century Movements for Black Lives.pptx
4.16.24 21st Century Movements for Black Lives.pptx4.16.24 21st Century Movements for Black Lives.pptx
4.16.24 21st Century Movements for Black Lives.pptxmary850239
 
Dust Of Snow By Robert Frost Class-X English CBSE
Dust Of Snow By Robert Frost Class-X English CBSEDust Of Snow By Robert Frost Class-X English CBSE
Dust Of Snow By Robert Frost Class-X English CBSEaurabinda banchhor
 
EMBODO Lesson Plan Grade 9 Law of Sines.docx
EMBODO Lesson Plan Grade 9 Law of Sines.docxEMBODO Lesson Plan Grade 9 Law of Sines.docx
EMBODO Lesson Plan Grade 9 Law of Sines.docxElton John Embodo
 
ENG 5 Q4 WEEk 1 DAY 1 Restate sentences heard in one’s own words. Use appropr...
ENG 5 Q4 WEEk 1 DAY 1 Restate sentences heard in one’s own words. Use appropr...ENG 5 Q4 WEEk 1 DAY 1 Restate sentences heard in one’s own words. Use appropr...
ENG 5 Q4 WEEk 1 DAY 1 Restate sentences heard in one’s own words. Use appropr...JojoEDelaCruz
 
Textual Evidence in Reading and Writing of SHS
Textual Evidence in Reading and Writing of SHSTextual Evidence in Reading and Writing of SHS
Textual Evidence in Reading and Writing of SHSMae Pangan
 
Virtual-Orientation-on-the-Administration-of-NATG12-NATG6-and-ELLNA.pdf
Virtual-Orientation-on-the-Administration-of-NATG12-NATG6-and-ELLNA.pdfVirtual-Orientation-on-the-Administration-of-NATG12-NATG6-and-ELLNA.pdf
Virtual-Orientation-on-the-Administration-of-NATG12-NATG6-and-ELLNA.pdfErwinPantujan2
 
USPS® Forced Meter Migration - How to Know if Your Postage Meter Will Soon be...
USPS® Forced Meter Migration - How to Know if Your Postage Meter Will Soon be...USPS® Forced Meter Migration - How to Know if Your Postage Meter Will Soon be...
USPS® Forced Meter Migration - How to Know if Your Postage Meter Will Soon be...Postal Advocate Inc.
 
Influencing policy (training slides from Fast Track Impact)
Influencing policy (training slides from Fast Track Impact)Influencing policy (training slides from Fast Track Impact)
Influencing policy (training slides from Fast Track Impact)Mark Reed
 
TEACHER REFLECTION FORM (NEW SET........).docx
TEACHER REFLECTION FORM (NEW SET........).docxTEACHER REFLECTION FORM (NEW SET........).docx
TEACHER REFLECTION FORM (NEW SET........).docxruthvilladarez
 
How to do quick user assign in kanban in Odoo 17 ERP
How to do quick user assign in kanban in Odoo 17 ERPHow to do quick user assign in kanban in Odoo 17 ERP
How to do quick user assign in kanban in Odoo 17 ERPCeline George
 
Incoming and Outgoing Shipments in 3 STEPS Using Odoo 17
Incoming and Outgoing Shipments in 3 STEPS Using Odoo 17Incoming and Outgoing Shipments in 3 STEPS Using Odoo 17
Incoming and Outgoing Shipments in 3 STEPS Using Odoo 17Celine George
 

Recently uploaded (20)

YOUVE_GOT_EMAIL_PRELIMS_EL_DORADO_2024.pptx
YOUVE_GOT_EMAIL_PRELIMS_EL_DORADO_2024.pptxYOUVE_GOT_EMAIL_PRELIMS_EL_DORADO_2024.pptx
YOUVE_GOT_EMAIL_PRELIMS_EL_DORADO_2024.pptx
 
Millenials and Fillennials (Ethical Challenge and Responses).pptx
Millenials and Fillennials (Ethical Challenge and Responses).pptxMillenials and Fillennials (Ethical Challenge and Responses).pptx
Millenials and Fillennials (Ethical Challenge and Responses).pptx
 
Concurrency Control in Database Management system
Concurrency Control in Database Management systemConcurrency Control in Database Management system
Concurrency Control in Database Management system
 
ClimART Action | eTwinning Project
ClimART Action    |    eTwinning ProjectClimART Action    |    eTwinning Project
ClimART Action | eTwinning Project
 
How to Add Barcode on PDF Report in Odoo 17
How to Add Barcode on PDF Report in Odoo 17How to Add Barcode on PDF Report in Odoo 17
How to Add Barcode on PDF Report in Odoo 17
 
THEORIES OF ORGANIZATION-PUBLIC ADMINISTRATION
THEORIES OF ORGANIZATION-PUBLIC ADMINISTRATIONTHEORIES OF ORGANIZATION-PUBLIC ADMINISTRATION
THEORIES OF ORGANIZATION-PUBLIC ADMINISTRATION
 
Daily Lesson Plan in Mathematics Quarter 4
Daily Lesson Plan in Mathematics Quarter 4Daily Lesson Plan in Mathematics Quarter 4
Daily Lesson Plan in Mathematics Quarter 4
 
4.16.24 21st Century Movements for Black Lives.pptx
4.16.24 21st Century Movements for Black Lives.pptx4.16.24 21st Century Movements for Black Lives.pptx
4.16.24 21st Century Movements for Black Lives.pptx
 
Dust Of Snow By Robert Frost Class-X English CBSE
Dust Of Snow By Robert Frost Class-X English CBSEDust Of Snow By Robert Frost Class-X English CBSE
Dust Of Snow By Robert Frost Class-X English CBSE
 
EMBODO Lesson Plan Grade 9 Law of Sines.docx
EMBODO Lesson Plan Grade 9 Law of Sines.docxEMBODO Lesson Plan Grade 9 Law of Sines.docx
EMBODO Lesson Plan Grade 9 Law of Sines.docx
 
ENG 5 Q4 WEEk 1 DAY 1 Restate sentences heard in one’s own words. Use appropr...
ENG 5 Q4 WEEk 1 DAY 1 Restate sentences heard in one’s own words. Use appropr...ENG 5 Q4 WEEk 1 DAY 1 Restate sentences heard in one’s own words. Use appropr...
ENG 5 Q4 WEEk 1 DAY 1 Restate sentences heard in one’s own words. Use appropr...
 
Textual Evidence in Reading and Writing of SHS
Textual Evidence in Reading and Writing of SHSTextual Evidence in Reading and Writing of SHS
Textual Evidence in Reading and Writing of SHS
 
Virtual-Orientation-on-the-Administration-of-NATG12-NATG6-and-ELLNA.pdf
Virtual-Orientation-on-the-Administration-of-NATG12-NATG6-and-ELLNA.pdfVirtual-Orientation-on-the-Administration-of-NATG12-NATG6-and-ELLNA.pdf
Virtual-Orientation-on-the-Administration-of-NATG12-NATG6-and-ELLNA.pdf
 
INCLUSIVE EDUCATION PRACTICES FOR TEACHERS AND TRAINERS.pptx
INCLUSIVE EDUCATION PRACTICES FOR TEACHERS AND TRAINERS.pptxINCLUSIVE EDUCATION PRACTICES FOR TEACHERS AND TRAINERS.pptx
INCLUSIVE EDUCATION PRACTICES FOR TEACHERS AND TRAINERS.pptx
 
USPS® Forced Meter Migration - How to Know if Your Postage Meter Will Soon be...
USPS® Forced Meter Migration - How to Know if Your Postage Meter Will Soon be...USPS® Forced Meter Migration - How to Know if Your Postage Meter Will Soon be...
USPS® Forced Meter Migration - How to Know if Your Postage Meter Will Soon be...
 
YOUVE GOT EMAIL_FINALS_EL_DORADO_2024.pptx
YOUVE GOT EMAIL_FINALS_EL_DORADO_2024.pptxYOUVE GOT EMAIL_FINALS_EL_DORADO_2024.pptx
YOUVE GOT EMAIL_FINALS_EL_DORADO_2024.pptx
 
Influencing policy (training slides from Fast Track Impact)
Influencing policy (training slides from Fast Track Impact)Influencing policy (training slides from Fast Track Impact)
Influencing policy (training slides from Fast Track Impact)
 
TEACHER REFLECTION FORM (NEW SET........).docx
TEACHER REFLECTION FORM (NEW SET........).docxTEACHER REFLECTION FORM (NEW SET........).docx
TEACHER REFLECTION FORM (NEW SET........).docx
 
How to do quick user assign in kanban in Odoo 17 ERP
How to do quick user assign in kanban in Odoo 17 ERPHow to do quick user assign in kanban in Odoo 17 ERP
How to do quick user assign in kanban in Odoo 17 ERP
 
Incoming and Outgoing Shipments in 3 STEPS Using Odoo 17
Incoming and Outgoing Shipments in 3 STEPS Using Odoo 17Incoming and Outgoing Shipments in 3 STEPS Using Odoo 17
Incoming and Outgoing Shipments in 3 STEPS Using Odoo 17
 

Featured

2024 State of Marketing Report – by Hubspot
2024 State of Marketing Report – by Hubspot2024 State of Marketing Report – by Hubspot
2024 State of Marketing Report – by HubspotMarius Sescu
 
Everything You Need To Know About ChatGPT
Everything You Need To Know About ChatGPTEverything You Need To Know About ChatGPT
Everything You Need To Know About ChatGPTExpeed Software
 
Product Design Trends in 2024 | Teenage Engineerings
Product Design Trends in 2024 | Teenage EngineeringsProduct Design Trends in 2024 | Teenage Engineerings
Product Design Trends in 2024 | Teenage EngineeringsPixeldarts
 
How Race, Age and Gender Shape Attitudes Towards Mental Health
How Race, Age and Gender Shape Attitudes Towards Mental HealthHow Race, Age and Gender Shape Attitudes Towards Mental Health
How Race, Age and Gender Shape Attitudes Towards Mental HealthThinkNow
 
AI Trends in Creative Operations 2024 by Artwork Flow.pdf
AI Trends in Creative Operations 2024 by Artwork Flow.pdfAI Trends in Creative Operations 2024 by Artwork Flow.pdf
AI Trends in Creative Operations 2024 by Artwork Flow.pdfmarketingartwork
 
PEPSICO Presentation to CAGNY Conference Feb 2024
PEPSICO Presentation to CAGNY Conference Feb 2024PEPSICO Presentation to CAGNY Conference Feb 2024
PEPSICO Presentation to CAGNY Conference Feb 2024Neil Kimberley
 
Content Methodology: A Best Practices Report (Webinar)
Content Methodology: A Best Practices Report (Webinar)Content Methodology: A Best Practices Report (Webinar)
Content Methodology: A Best Practices Report (Webinar)contently
 
How to Prepare For a Successful Job Search for 2024
How to Prepare For a Successful Job Search for 2024How to Prepare For a Successful Job Search for 2024
How to Prepare For a Successful Job Search for 2024Albert Qian
 
Social Media Marketing Trends 2024 // The Global Indie Insights
Social Media Marketing Trends 2024 // The Global Indie InsightsSocial Media Marketing Trends 2024 // The Global Indie Insights
Social Media Marketing Trends 2024 // The Global Indie InsightsKurio // The Social Media Age(ncy)
 
Trends In Paid Search: Navigating The Digital Landscape In 2024
Trends In Paid Search: Navigating The Digital Landscape In 2024Trends In Paid Search: Navigating The Digital Landscape In 2024
Trends In Paid Search: Navigating The Digital Landscape In 2024Search Engine Journal
 
5 Public speaking tips from TED - Visualized summary
5 Public speaking tips from TED - Visualized summary5 Public speaking tips from TED - Visualized summary
5 Public speaking tips from TED - Visualized summarySpeakerHub
 
ChatGPT and the Future of Work - Clark Boyd
ChatGPT and the Future of Work - Clark Boyd ChatGPT and the Future of Work - Clark Boyd
ChatGPT and the Future of Work - Clark Boyd Clark Boyd
 
Getting into the tech field. what next
Getting into the tech field. what next Getting into the tech field. what next
Getting into the tech field. what next Tessa Mero
 
Google's Just Not That Into You: Understanding Core Updates & Search Intent
Google's Just Not That Into You: Understanding Core Updates & Search IntentGoogle's Just Not That Into You: Understanding Core Updates & Search Intent
Google's Just Not That Into You: Understanding Core Updates & Search IntentLily Ray
 
Time Management & Productivity - Best Practices
Time Management & Productivity -  Best PracticesTime Management & Productivity -  Best Practices
Time Management & Productivity - Best PracticesVit Horky
 
The six step guide to practical project management
The six step guide to practical project managementThe six step guide to practical project management
The six step guide to practical project managementMindGenius
 
Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...
Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...
Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...RachelPearson36
 

Featured (20)

2024 State of Marketing Report – by Hubspot
2024 State of Marketing Report – by Hubspot2024 State of Marketing Report – by Hubspot
2024 State of Marketing Report – by Hubspot
 
Everything You Need To Know About ChatGPT
Everything You Need To Know About ChatGPTEverything You Need To Know About ChatGPT
Everything You Need To Know About ChatGPT
 
Product Design Trends in 2024 | Teenage Engineerings
Product Design Trends in 2024 | Teenage EngineeringsProduct Design Trends in 2024 | Teenage Engineerings
Product Design Trends in 2024 | Teenage Engineerings
 
How Race, Age and Gender Shape Attitudes Towards Mental Health
How Race, Age and Gender Shape Attitudes Towards Mental HealthHow Race, Age and Gender Shape Attitudes Towards Mental Health
How Race, Age and Gender Shape Attitudes Towards Mental Health
 
AI Trends in Creative Operations 2024 by Artwork Flow.pdf
AI Trends in Creative Operations 2024 by Artwork Flow.pdfAI Trends in Creative Operations 2024 by Artwork Flow.pdf
AI Trends in Creative Operations 2024 by Artwork Flow.pdf
 
Skeleton Culture Code
Skeleton Culture CodeSkeleton Culture Code
Skeleton Culture Code
 
PEPSICO Presentation to CAGNY Conference Feb 2024
PEPSICO Presentation to CAGNY Conference Feb 2024PEPSICO Presentation to CAGNY Conference Feb 2024
PEPSICO Presentation to CAGNY Conference Feb 2024
 
Content Methodology: A Best Practices Report (Webinar)
Content Methodology: A Best Practices Report (Webinar)Content Methodology: A Best Practices Report (Webinar)
Content Methodology: A Best Practices Report (Webinar)
 
How to Prepare For a Successful Job Search for 2024
How to Prepare For a Successful Job Search for 2024How to Prepare For a Successful Job Search for 2024
How to Prepare For a Successful Job Search for 2024
 
Social Media Marketing Trends 2024 // The Global Indie Insights
Social Media Marketing Trends 2024 // The Global Indie InsightsSocial Media Marketing Trends 2024 // The Global Indie Insights
Social Media Marketing Trends 2024 // The Global Indie Insights
 
Trends In Paid Search: Navigating The Digital Landscape In 2024
Trends In Paid Search: Navigating The Digital Landscape In 2024Trends In Paid Search: Navigating The Digital Landscape In 2024
Trends In Paid Search: Navigating The Digital Landscape In 2024
 
5 Public speaking tips from TED - Visualized summary
5 Public speaking tips from TED - Visualized summary5 Public speaking tips from TED - Visualized summary
5 Public speaking tips from TED - Visualized summary
 
ChatGPT and the Future of Work - Clark Boyd
ChatGPT and the Future of Work - Clark Boyd ChatGPT and the Future of Work - Clark Boyd
ChatGPT and the Future of Work - Clark Boyd
 
Getting into the tech field. what next
Getting into the tech field. what next Getting into the tech field. what next
Getting into the tech field. what next
 
Google's Just Not That Into You: Understanding Core Updates & Search Intent
Google's Just Not That Into You: Understanding Core Updates & Search IntentGoogle's Just Not That Into You: Understanding Core Updates & Search Intent
Google's Just Not That Into You: Understanding Core Updates & Search Intent
 
How to have difficult conversations
How to have difficult conversations How to have difficult conversations
How to have difficult conversations
 
Introduction to Data Science
Introduction to Data ScienceIntroduction to Data Science
Introduction to Data Science
 
Time Management & Productivity - Best Practices
Time Management & Productivity -  Best PracticesTime Management & Productivity -  Best Practices
Time Management & Productivity - Best Practices
 
The six step guide to practical project management
The six step guide to practical project managementThe six step guide to practical project management
The six step guide to practical project management
 
Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...
Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...
Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...
 

Oracle adf   online training  e-learning and placement

  • 1. ORACLE ADF - ONLINE TRAINING | E- LEARNING AND PLACEMENT Online | classroom| Corporate Training | certifications | placements| support CONTACT US: MAGNIFIC TRAINING INDIA +91-9052666559 USA : +1-678-693-3475 info@magnifictraining.com www.magnifictraining.com
  • 2. OVERVIEW • IDE favorites • Fool‟s Gold • UI (tw)Highlights • The Whole Wide World
  • 3. WHAT IS A GOLD NUGGET? • Unexpected benefit • Underused, overlooked feature – Small – frequently useful – Huge – unexplored concept or area of infrastructure • Potentially useful to large community – Not too much a niche option
  • 4. NUGGET CLOUD Refresh after insert Groovy so aDF JHeadstartPPR DVT DecoupledDevelopment&Reuse TaskFlow,Region,UIShell,DeclarativeComponents,ADFLibrary,… active rowkey prepareSession Java/JEE Fusion Applications EMG and wider community OraFormsFaces Popup Change Persistence AutoSuggest PanelCollection ADFContext OPSS/ADF Security TreeSelect VO Updateable Lookup Multi Browser Support server event & listener Listvalidator FormatString Selenium Hot Reload Customization PanelDashboard Programmatic VO Bean Data Control setPropertyListener ActiveDataServiceforPush RichTable WebLogicServer EL SavePoints PageTemplate Skin editor
  • 5. ADF IN LARRY‟S KEYNOTE ON ORACLE OPEN WORLD 2009 AND 2010
  • 6. THE TABLE • ADF Faces Rich Table (& Panel Collection) – Displays ADF Model data bound collection, bean array, List, ResultSet, RowSet and more – Dynamic Table Configuration & Change Persistence • Rearrange, resize, hide/show columns, freeze columns – Post-load or Lazy Data Fetch – Fetch data rows upon scroll – Filter & Sort – Read-Only and Click-to-edit – [single or multiple] Row and Column Selection – Header, Footer, Column Grouping, DetailStamp – Many, many predefined facets – Export data set, Email & Print mode
  • 7. ACTIVE ROW KEY • Property on table that is „click to edit‟ • EL expression that resolves to the primary key of the row that should be displayed as editable – Table will scroll that row into view
  • 9. public class AppModuleImpl extends ApplicationModuleImpl { public BookingsViewImpl getBookingsView1() { return (BookingsViewImpl)findViewObjects("BookingsView1"); } }
  • 10. public class AppModuleImpl extends ApplicationModuleImpl { public BookingsViewImpl getBookingsView1() { return (BookingsViewImpl)findViewObjects("BookingsView1"); } public void doSomething() { } }
  • 11. public class AppModuleImpl extends ApplicationModuleImpl { public BookingsViewImpl getBookingsView1() { return (BookingsViewImpl)findViewObjects("BookingsView1"); } public void doSomething() { this. } }
  • 12. public class AppModuleImpl extends ApplicationModuleImpl { public BookingsViewImpl getBookingsView1() { return (BookingsViewImpl)findViewObjects("BookingsView1"); } public void doSomething() { this. } }
  • 13. public class AppModuleImpl extends ApplicationModuleImpl { public BookingsViewImpl getBookingsView1() { return (BookingsViewImpl)findViewObjects("BookingsView1"); } public void doSomething() { this.getB } }
  • 14. public class AppModuleImpl extends ApplicationModuleImpl { public BookingsViewImpl getBookingsView1() { return (BookingsViewImpl)findViewObjects("BookingsView1"); } public void doSomething() { this.getBookingView1Impl() } }
  • 15. public class AppModuleImpl extends ApplicationModuleImpl { public BookingsViewImpl getBookingsView1() { return (BookingsViewImpl)findViewObjects("BookingsView1"); } public void doSomething() { ? = this.getBookingView1Impl() } }
  • 16. public class AppModuleImpl extends ApplicationModuleImpl { public BookingsViewImpl getBookingsView1() { return (BookingsViewImpl)findViewObjects("BookingsView1"); } public void doSomething() { this.getB } }
  • 17. public class AppModuleImpl extends ApplicationModuleImpl { public BookingsViewImpl getBookingsView1() { return (BookingsViewImpl)findViewObjects("BookingsView1"); } public void doSomething() { this.getB } }
  • 18. public class AppModuleImpl extends ApplicationModuleImpl { public BookingsViewImpl getBookingsView1() { return (BookingsViewImpl)findViewObjects("BookingsView1"); } public void doSomething() { BookingsViewImpl bookingsView = this.getBookingsView1(); } }
  • 19. JDEVELOPER GO TO SHORTCUTS • Go to Class: CTRL - • Go to File: CTRL ALT - • Find usages: CTRL ALT u – For class, method, EO and VO Attribute, …
  • 20. MORE BEST SHORT CUTS… • CTRL Shift Space: parameter insight • CTRL = : list of recently opened files • CTRL Space: completion insight • CTRL Space (2x): declaration insert • CTRL /: selection commented • CTRL Shift C: copy file path to Clipboard • Alt Home : select file in „tree‟
  • 22. THE RIGHT MOUSE CLICK • ContextMenu client listener and Popup (menu and window)
  • 24. EXAMPLE: ADDING FANCY BALLOON HELP • Create a popup with a noteWindow child to contain the fancy help content • Add a showPopupBehavior tag to the inputText that we want to add the help to
  • 25. EXPRESSION LANGUAGE • IoC: Injection of Value and Listener into page • Dynamic, context sensitive behavior • Extension points – Custom Functions invoked from EL – Integration of Spring Beans – Custom EL Resolver • To resolve values from property files, ….
  • 26. EVEN MORE DECLARATIVE ADF DEVELOPMENT – WITH JHEADSTART
  • 27. PROGRAMMATIC CROSS TIER INTERACTION Web Browser JEE Application Server
  • 28. Client Server (middle tier) Database JavaScript Components ComponentsBeans & Objects activeOutputText Active Data Model activeOutputText push serverListener Bean Load JSON, CSS, Image, XML, JSRequest data or Push message push (DB QRCN) Object clientListener component serverListener partial page refresh partialSubmit autoSubmit JavaScript Function Queue Custom Event component component manipulate poll setPropertyListener user or programmatic action add JS to execute (ERKS) add components as partial target ERKS ‘ppr script’ actionListener, valueChangeListener, …Listener component component Full page reload CLIENT SERVER INTERACTIONS VV.
  • 29. USE SETPROPERTYLISTENER TO PUSH DATA TO THE SERVER • The setPropertyListener will pass from value to the to target when type event occurs on parent – A very simple way to inform the server about an event and the data associated with the event – Supported types: action, focus, poll, query, rangeChange, selection, sort, rowDisclosure, valueChange and many more <af:image id="removeFromSetImage“ source="/images/removeFromSet.png“ shortDesc="Remove from Shopping Basket"/> <af:setPropertyListener from="#{item}“ to="#{shoppingBasket.itemToRemove}" type="action"/> </af:commandLink>
  • 30. SERVERLISTENER FOR CUSTOM AJAX (BACKGROUND CLIENT TO SERVER PUSH) • A serverListener associates a server side method with a client side custom event – This allows JavaScript functions to call a server side method by queuing an event – A custom event carries a payload
  • 31. ADF ACTIVE DATA SERVICE – SERVER PUSH TO CLIENT • Push: server sends messages to client • ADF Active Data Service enables UI components to be „automatically refreshed‟ when server side events occur • Active UI Components include Table, Image, OutputText, DVT Components – Based on BAM Data Control – Based on Custom Beans that extend ActiveAdapter • Nudge: push-to-refresh • Note: client-2-client push can easily be implemented as client-to-server-followed- by-server-to-client push Web Browser JEE Application Server
  • 32. AUTO-PPR FOR IMMEDIATE REFRESH OF DATA BOUND COMPONENTS • To have ADF automatically refresh data bound components when underlying value binding has changed its value • Set changeEventPolicy=ppr on iterator – Refresh as piggy back on any request cycle – No partialTriggers attribute required!
  • 33. CROSS TIER PUSH Web Browser RDBMS JEE Application Server trg job servlet activeOT evt lsnr Cache refresher table
  • 34. THE “HISTORY” FEATURE IN JDEVELOPER • Quick comparison of file with previous states – Can leverage Source Code Control system (Subversion, CVS) but also maintains local file history – The compare feature is ‘XML aware’ • Revert to a previous state of a file
  • 35. MARRYING FORMS AND ADF TOGETHER – MIGRATE WITH (i/o FROM) FORMS TO ADF • OraFormsFaces leveraging the JavaScript-Applet bridge for two-way event exchange
  • 38. JAVA AND JEE • ADF is a framework on top of Java, JEE and JVM • Anything that is/extends/runs on one of these is potentially usable with and relevant for ADF • Zillion frameworks and libraries – iText (PDF), Apache POI (Excel), Jasper Reports, BIRT – Spring (IoC, AOP, Acegi/Security, Social, ..) – Apache Commons, Google Collections, Joda Time • Software Engineering – Test (Junit, EasyMock), build (Ant, Maven), check/QA (FindBugs, CheckStyle, Sonar), • JEE facilities in WLS including JMS, WS* & RS, JMX… • Dynamic JVM languages: Groovy, Scala, JRuby, … • Java 7 SE and beyond • Java FX?
  • 39. PREPARE SESSION • Before any other database communication is performed during the processing of a request … • ADF BC will execute the prepareSession() method that you can override in ApplicationModuleImpl • This is the perfect place to – Reset package state – Set application and client info – Set application context • User details, current session context, view filter conditions (real or poor man VPD) – Fetch any events published inside the database Database ADF BC AppMod
  • 40. CHALLENGE • Create a Sliding Tile puzzle that tiles up an image in a configurable number of tiles • Using drag and drop, the user can reassemble the image
  • 41. STEPS • Create Servlet that produces tiles from a JPEG image – Parameters: image name, tile factor, x and y • Create PanelDashboard with panelBoxes with richImage components – That request their source from the servlet corresponding to their position in the grid • Bind the PanelDashboard and dynamically create the panelBox components • Allow user to set the tile factor and choose the image – Use a Carousel for image selection
  • 42. DEMO
  • 43. ED N Task UI SDO Entity EDN Events SO ADF •EDN Events from ADF BC •BAM Data Control •Human Task UI •ADF BC SDO Service •WebService Proxy and Data Control
  • 44. ADF TO SOA INTERACTIONS IN FAPPS Business LogicView Data OrchestrationHuman interaction Policy evaluationMonitoring Rules EngineAssign Task Task Complete Human Workflow Service Mediator /BPEL Process results facts Business Activity Monitoring Business Services ADF Business Components Data Binding SDO Services Database Schema Events User Interface ADF Faces components WebCenter
  • 45. PROGRAMMATIC VIEW OBJECT • It walks, talks and looks like a „regular‟ View Object – (regular being based on Entity Objects or SQL Query) • But it is entirely fueled by custom written overridden Java methods – possibly without database connection – A bit like a View with Instead Of trigger – against a Collection based Table Function and PL/SQL API • Programmatic View Objects can be used as normal in a Data Control for binding ADF Faces components • Normal rich declarative ADF BC data binding can be provided to UI developers for data sources such as – WebService, JMS Queue, Memory Grid, Document Management System, Email, cross session data, … • Note: with the evolution of the Bean Data Control, some of the use cases will fade away
  • 46. THE ROOT OF AJAX Suggestions
  • 47. AUTO SUGGESTIONS • User is entering a field – As she types characters, suggestions can be presented for what the full entry should read • Based on a list of allowable values, based on previous (popular) entries or anything really – User can pick a suggestion for ‘short-cut typing’ • Auto suggestions can be model-driven (declarative) or custom – And can do things beyond plain list based suggestions
  • 48. INTRO • Google Suggest set off the AJAX hype in anger • Many implementations for a „suggestions‟ feature in ADF 10g and 11g have been created – Using custom JavaScript or libraries like Jquery • With PS1, ADF 11g introduced a native component for „auto suggestions‟ – The <af:autoSuggestBehavior> component, to be included in inputText or inputListOfValues or inputComboboxListOfValues
  • 49. MODEL DRIVEN SUGGESTIONS • The suggestions can be derived declaratively from List of Values reference on a VO Attribute • Steps: – On ViewObject • Create ViewAccessor (for list values) • Create List of Values for Attribute • Link LoV to ViewAccessor – In Page • Add InputListOfValues component based on attribute • Add af:autoSuggestBehavior with suggestions based on List of Values Binding’s suggestedItems
  • 51. CUSTOM SUGGESTIONS • Auto Suggestions can be provided by managed bean that implements signature: – List getSuggestions( String currentValue) • And the List returned is really List<SelectItem> • Potential use cases – Based on some (application wide) cached collection (of previously entered ?) values – Retrieve values from WebService, file, … – Use common abbreviations, codes • Country code, airport – Show translations in other languages
  • 52. STATIC LIST OF COUNTRIES Suggestions
  • 53. SUGGESTIONS … OR? • Suggested Values do not need to be suggestions in a very literal sense – What you see may not be what you get – The SelectItem as a label (WYS) and a value (ISWYG) • Examples: – Add words to field instead of replacing value – Perform selected operation on value – Show an updated indicator based on the value
  • 54. PAGE TEMPLATE • Turns page layout inside out: – the page references the template – the page template determines the overall structure – the page provides the content for the designated areas in the template (through the facets) • Can be dynamically, context-sensitively selected using an EL expression • Can also be used for areas within a page – With multiple page templates used within the same page – More an area template than a page template to define UI Design Patterns • Tree-with-Detail-Form, Table-and-Chart, Master-Form- Detail-Table, Search block-Results table…
  • 55. USING MULTIPLE PAGE TEMPLATES • Two templates: mainpage and Table-Form template
  • 56. OTHER PAGE CONSUMING THE TEMPLATE(S)
  • 58. SUMMARY • Twinkle, twinkle little stars… – #1 nugget – #2 nugget – #3 nugget • Don‟t give up [too soon] – There is more in ADF than meets the eye – There is a world of Java/JEE to leverage – There is a community to lean on • Scan release notes and monitor blog-o-sphere for valuable new (and re-discovered) nuggets • Share! Yes, you too! Your findings are just as valuable. – Participate in EMG and OTN Forum discussions, write blog articles, present in conferences, …
  • 60. SHOULD YOU REQUIRE ANY FURTHER INFORMATION PLEASE DO NOT HESITATE TO CONTACT US • http://www.oraclecourseonline.com • -oracle fusion adf online training contact us: • info@magnifictraining.com or +919052666559 • By Real Time Experts from Hyderabad, • Bangalore • ,India,USA,Canada,UK, Australia,South • Africa.

Editor's Notes

  1. ADFBCGroovy, groovy, groovy.List validators die je definieert op view assessors. Bij een entityObjectAttribute Business rule kun je een Listvalidator baseren op een view accessor. Dit kan handig zijn.LibraryShared property voor EO&apos;s en VO&apos;s. In verband met ADF BC Libraries. Alleen de objecten met LibrarySharedproperty = true kunnen worden gebruikt in de projecten die deze library importeren. Default staat deze property op true, dus zullen alle objecten altijd zichtbaar zijn. Door selectiever gebruik te maken van deze property blijven je libraries schoner. ADFFACESIn ADF 11g-R2 heb je de activeRowKeyproperty. Deze stelt je in staat om in een tabel met de click to edit mode een rij programmatisch editable te maken (zonder te clicken). Als de rij niet zichtbaar is dan wordt hier automatisch naar toe gescrolled. Zie ook : http://technology.amis.nl/blog/13314/adf-11g-r2-using-the-activerowkey-propertyIn ADF 11g-R2 heb je af:formatString en af:formatNamed. Daarmee kun je parameters (maximaal 4) gebruiken in EL expressies. formatString heeft 1 parameter, formatString2 heeft er 2, en zo verder tot formatString4. Hetzelfde geldt voor formatNamed; zie ook http://download.oracle.com/docs/cd/E16162_01/web.1112/e16181/gs_jdev.htm#CHDDAICC&lt;af:outputText value=&quot;#{af:formatString(&apos;The current user is: {0}, someBean.currentUser)}&quot; /&gt;
  2. In ADF 11g-R2 heb je de activeRowKeyproperty. Deze stelt je in staat om in een tabel met de click to edit mode een rij programmatisch editable te maken (zonder te clicken). Als de rij niet zichtbaar is dan wordt hier automatisch naar toe gescrolled. Zie ook : http://technology.amis.nl/blog/13314/adf-11g-r2-using-the-activerowkey-property
  3. Some developers don&apos;t know the Completion Insight has 2 modes
  4. Problem here is it hasn&apos;t filled in the left hand side of the assignment .... what types was it meant to return?In this examples it&apos;s easy to guess, but what if the function was declared in some other class? It&apos;s painful to have to navigate to that class and come back
  5. Instead if the user presses Ctrl – Space twice
  6. ....the Completion Insight changes modes
  7. On selecting an entry, it will now do both sides of the expression+ bonus it completes the statement too with a semicolon
  8. Even though we have a rich editor for business components, there are hidden properties only revealed in the Property InspectorThe highlighted option when used, with the ADF BC components are deployed as an ADF Library, if this is set to true, the component will not be available to the consuming application.
  9. http://technology.amis.nl/blog/6581/adf-11g-the-native-autosuggest-behaviorhttp://www.gebs.ro/blog/oracle/oracle-adf-autosuggest-behavior/
  10. ViewObject for Candidate Managers (ViewCriteria with one bind parameter PartialName) Application Module Impl method (in Client Interface): findCandidateManagers(partialName) return row[]Action (Operation) Binding for that method in pageManaged bean that implements suggestions signature, executes operation binding and returns the results(pretty serious: database access after each key stroke!)