SlideShare ist ein Scribd-Unternehmen logo
1 von 83
Downloaden Sie, um offline zu lesen
Twelve Tasks Made Easier with IBM Domino XPages
Tweet about this event: #xpages
and mention us: @teamstudio @TLCCLTD @PaulSWithers @mmcgarel
April 23, 2013
@teamstudio
teamstudio.comTaline Badrikian
Marketing Director
Who we are
• Our background is in creating tools for collaborative
computing in mid-size and large enterprises, primarily for
Lotus Notes
• Easy-to-use tools for developers and administrators
• 2300+ active customers, 47 countries
• Offices in US, UK and Japan
• Entered mobile space in 2010 with Unplugged – easy
mobilization of Notes apps to Blackberry, Android and iOS
Teamstudio Unplugged
• Your Mobile Domino Server – take your Notes
apps with you!
• End users access Notes applications from
mobile devices whether online or offline
• Leverages existing skills and technology –
XPages – Replication model you already know
• IBM Collaboration Solutions Award Winner 2013
Teamstudio Continuity
• Mobile BCM application for smartphones and tablets
– iOS, Android and BB
• Offline access to all your BCM and
Disaster Recovery data
• Store plans, contacts, call trees, and more
• Client available for download from app stores
Teamstudio
• Next webinar – June 27th – Dojo Grids in
XPages
• Visit us at MWLUG – August 21-23 in
Indianapolis
© 2013 The Learning Continuum Company, Ltd – This material can not be reproduced or distributed without the express permission of TLCC
Howard Greenberg
TLCC
@TLCCLtd
Paul Della-Nebbia
TLCC
@paulDN
It’s Not Herculean: Twelve Tasks
Made Easier With IBM Lotus Domino
XPages
1
#XPages
Your Hosts Today:
© 2013 The Learning Continuum Company, Ltd – This material can not be reproduced or distributed without the express permission of TLCC 2
Upcoming and Recorded Webinars
Next Webinar on June 27th
Dojo DataGrid and XPages with Brad Balassaitis
www.tlcc.com/xpages-webinar
Same web page has a link to previous webinars
© 2013 The Learning Continuum Company, Ltd – This material can not be reproduced or distributed without the express permission of TLCC
• Seven XPages Courses!
FREE !! Introduction to XPages Development
JavaScript for XPages Development (8.5 and 9)
Developing XPages Using Domino Designer 8.5 / XPages Development 1 for 9
Rapid XPages Development using Application Layout and Dojo UI Controls (8.5 and 9)
XPages Development 2 for Notes and Domino 8.5
Mobile XPages for Domino 8.5 and 9
Java 1 for XPages Developers
• Self Paced Training
– Learn anywhere!
– An Instructor is a click away
• Instructor Led (Private)
• TLCC Mentoring Services
3
TLCC XPages Offerings
Spring Sale!!!!
© 2013 The Learning Continuum Company, Ltd – This material can not be reproduced or distributed without the express permission of TLCC
ICON UK (used to be UK LUG) in Brighton, UK
September 1st and 2nd FREE!!
www.iconuk.org
Both events feature a TLCC TackItOn
Rapid XPages Development using Application Layout and Dojo UI Controls
One full day with TLCC’s expert instructors
TLCC’s Rapid XPages Development course
A year of continued instructor support
All for only $499
www.tlcc.com/iconuktackiton or www.tlcc.com/mwlug
MWLug in Indianapolis
August 21st to 23rd
www.mwlug.com
4
Upcoming Events
© 2013 The Learning Continuum Company, Ltd – This material can not be reproduced or distributed without the express permission of TLCC
Asking Questions
5
Q & A at the end!
Type in your
questions as they
come up
© 2013 The Learning Continuum Company, Ltd – This material can not be reproduced or distributed without the express permission of TLCC
Your Presenters Today:
6
#XPages
Mike McGarel
@mmcgarel
www.bleedyellow.com/blogs/McGarelGramming
Paul Withers, IBM Champion
@PaulSWithers
www.intec.co.uk/blog
2 © 2013 IBM Corporation
Agenda
 Introduction
 The Twelve Tasks
 Bonus
 Summary
3 © 2013 IBM Corporation
Mike McGarel
 Working with web technologies for over 13 years
 Working with Notes/Domino since version 4.6
 Corporate developer
 Site developer for MWLUG and SkiLUG
4 © 2013 IBM Corporation
Paul Withers
 IBM Champion 2011-2012, 2013
 Co-Host The XCast
 Co-Author XPages Extension Library
5 © 2013 IBM Corporation
Why This Session?
 XPages is renowned for:
● faster web development
● modern Web 2.0 user interface
● pre-built controls
● UI can be separated from business logic
● greater flexibility of development interface
● gateway to JavaTM
● extensibility of development platform
 But what's in it for you?
6 © 2013 IBM Corporation
Agenda
 Introduction
 The Twelve Tasks
 Bonus
 Summary
7 © 2013 IBM Corporation
Hercules
 Most popular classical Greco-Roman hero
 Hercules is Latinized form (Heracles or
Herakles in Greek)
 Son of Zeus and the Alcmene (a mortal)
 Originally called Alcaeus. Herakles means
“famed because of Hera” (Hera-kleos)
 Given “12 Labours” as punishment
Image by Bayreuth2009 (Own work) [CC-BY-3.0 (http://creativecommons.org/licenses/by/3.0)], via Wikimedia Commons
8 © 2013 IBM Corporation
First Labour: Nemean Lion
9 © 2013 IBM Corporation
Themes
 Contain resources for entire application, for example:
● style sheets
● JavaScript files
 Can inherit from other themes
 Help to standardize user interface (UI)
10 © 2013 IBM Corporation
Benefits Over Classic Notes/Domino
 Easier to build consistent interfaces and business logic
 Single source of control
 Fewer inline styles means less code
 GOTCHA – cannot set properties required prior to rendering
● e.g. value property for a repeat control
 GOTCHA – can only override runtime bindings
● i.e. #{javascript:...} only, not ${javascript:...}
11 © 2013 IBM Corporation
Sample Theme Code
<theme extends="oneuiv2.1_gold">
<resource>
<content-type>text/css</content-type>
<href>corporate.css</href>
</resource>
<control override=”true”>
<name>Button.Submit</name>
<property>
<name>style</name>
<value>background-color: #0000FF; color: #FFF;</value>
</property>
</control>
</theme>
12 © 2013 IBM Corporation
Themes
13 © 2013 IBM Corporation
Second Labour: Lernean Hydra
14 © 2013 IBM Corporation
Repeat Controls
 Set datasource
● dominoView
● NotesDocumentCollection
● NotesViewEntryCollection
● Multi-value field
● JavaScript array
● Java collection
 Set number of iterations
 Set “var” and create template for a single iteration
● Compute rendered property for flexibility
15 © 2013 IBM Corporation
Benefits Over Classic Notes/Domino
 Easier than outputting HTML with @Transform, more flexible than HTML
in view columns
 Drag and drop to build up a complex layout
 Easier to build and debug than a LotusScript agent
 Allows greater flexibility for data model
 Pagination can easily be added
 GOTCHA – nothing shows if content is a single string
16 © 2013 IBM Corporation
Repeat Controls
17 © 2013 IBM Corporation
Third Labour – Ceryneian Hind
18 © 2013 IBM Corporation
In View Edit
19 © 2013 IBM Corporation
In View Edit
 Build “view” as normal
 Add link / button to edit a row, pass UNID / NoteID to scoped variable and
refresh
 Render read only version if UNID / NoteID is not for this document
 Render editable version if UNID / NoteID is for this document
 Look at In Place Form in Extension Library
20 © 2013 IBM Corporation
Benefits Over Classic Notes/Domino
 Web 2.0 style editing for small documents
 Less code than InViewEdit in Notes Client
 Easier than classic web (lots of AJAX, iFrames, JavaScript)
 With Repeat Controls, View Panels etc. quick to implement
 GOTCHA – NotesXspViewEntry cannot be edited. Use the
NotesDocument
 GOTCHA – for new documents set scope to request where possible
● Otherwise second edit updates the same NotesDocument
21 © 2013 IBM Corporation
Fourth Labour – Erymanthian Boar
22 © 2013 IBM Corporation
Design Properties
23 © 2013 IBM Corporation
Benefits Over Classic Notes/Domino
 All Properties panel on any control
 Copy and paste in Source pane
 Any property can be computed, for maximum flexibility
● Avoids code duplication
● Use dataContexts for further avoidance of code duplication
 GOTCHA – for eventHandler properties, need to use Outline / Source
24 © 2013 IBM Corporation
Fifth Labour: The Auguean Stables
25 © 2013 IBM Corporation
AJAX Partial Page Refresh
 Implemented with a single tick and selecting partial refresh ID
 “Changes” managed in design of XPage
● Rendered properties
● Computed properties
● Data definitions
 Minimal additional coding required
 For additional functionality, look at eventHandler properties – onStart,
onError, onComplete, execMode, execId
26 © 2013 IBM Corporation
Benefits Over Classic Notes/Domino
 Classical Domino would need a form with passthru HTML (div and button)
and JavaScript for an Ajax refresh.
 An alternate would be to call a LotusScript agent
 Notes Client has no partial refresh option
● NotesUIDocument methods can change specific components
 GOTCHA – validation triggers, be aware of JSF lifecycle
● Know what is sent to server, what runs on server, what is sent back
27 © 2013 IBM Corporation
Ajax Partial Page Refresh
28 © 2013 IBM Corporation
Sixth Labour: Stymphalian Birds
29 © 2013 IBM Corporation
Pager Controls
 Many standard options and easily customizable
● Show page number easily with Page {0} of {1}
● Can allow users to select number of items per page
● Can calculate link to last page (starting with version 8.5.2)
● Pager Add Rows control
● Pager Save State control (easily returns to same page)
 Built into
● View Panels
● Repeat Controls
● Data Tables
● Dynamic View Panel (Extension Library)
● Data View (Extension Library)
● iNotes ListView (Extension Library)
30 © 2013 IBM Corporation
Benefits Over Classic Notes/Domino
 Traditional Domino web has nothing out of the box
 Better user experience
 More flexibility for developers
31 © 2013 IBM Corporation
Pager Controls
32 © 2013 IBM Corporation
Seventh Labour: The Cretan Bull
33 © 2013 IBM Corporation
TODOs
 Eclipse editors allow managing of TODOs
 Window > Show Eclipse Views: Tasks
 Also can add FIXME or any other tag
 XPages, Custom Controls, Themes integrate
● SSJS Script Libraries not supported
● Style Sheets not supported
● Java classes supported
 No easy way of doing this in traditional Notes / Domino
34 © 2013 IBM Corporation
Enabling TODOs
35 © 2013 IBM Corporation
TODOs
36 © 2013 IBM Corporation
Eighth Labour: The Horses of Diomedes
37 © 2013 IBM Corporation
Labour 8.5.x: Rescue of Alcestis
38 © 2013 IBM Corporation
Rescue Your Code From The Dead With Local History
 Eclipse-based functionality
 Restore From > Local History
 Compare With > Local History
39 © 2013 IBM Corporation
Rescue Your Code With Source Control Management (SCM)
 Via plug-in on OpenNTF.org with Domino Designer 8.5.2
 Built into Domino Designer 8.5.3
 Your choice of Eclipse-based source control system
● Git
● Mercurial
● SVN
40 © 2013 IBM Corporation
Benefits Over Classic Notes/Domino
 Only available via third-party products
 Third-party tools may offer alternative functionality
 GOTCHA – local history specific to PC
 GOTCHA – be careful with round-tripping of DXL for traditional Notes
Client design elements
41 © 2013 IBM Corporation
Rescue Code From The Dead
42 © 2013 IBM Corporation
Ninth Labour: The Belt of Hippolyte
43 © 2013 IBM Corporation
Custom Controls
 Reusable within the same XPage
 Custom properties can control instances of the control
 Keep design clean by using Design Definition
 Use Editable Areas as placeholder for content within the Custom Control
44 © 2013 IBM Corporation
Benefits Over Classic Notes/Domino
 More powerful than subforms
 Can contain other custom controls
 Properties are defined on Custom Control
● Cleaner design
● Easier to support
45 © 2013 IBM Corporation
Custom Controls
46 © 2013 IBM Corporation
Custom Control Property Definition Example
47 © 2013 IBM Corporation
Using The Custom Control Property Definition
<xp:div id="divButtons" styleClass="divButtons"
style="#{javascript:compositeData.controlStyles}">
. . .
</xp:div>
48 © 2013 IBM Corporation
Tenth Labour: Geryon's Cattle
49 © 2013 IBM Corporation
Joining Views and Multiple Datasources
 Merge content from multiple documents in a single view
 Merge content from multiple databases
 Display and edit multiple documents on one XPage
50 © 2013 IBM Corporation
Benefits Over Classic Notes/Domino
 Minimize data stored on NotesDocuments
 Minimize views within the database
 More flexible reporting
 Better user-experience
 Build up complex layouts section by section
 GOTCHA – use ignoreRequestParams for secondary NotesDocuments
51 © 2013 IBM Corporation
Joining Views
52 © 2013 IBM Corporation
Eleventh Labour: Apples of The Hesperides
53 © 2013 IBM Corporation
Display data on Mobile devices
 XPages can be displayed without any amendments on mobile devices
 Use responsive design for resolution-specific layout
 Use Extension Library mobile components for tailored content
● New redirect control available
 Third-party products for leveraging XPages skills for offline development
54 © 2013 IBM Corporation
Benefits Over Classic Notes/Domino
 Leverage existing skills
 Pre-built controls with OS-specific look and feel
 Access data sources as within normal XPages
 GOTCHA – connectivity is not necessarily the same as desktop browser
 GOTCHA – use reloadContent property judiciously
 GOTCHA – slide transitions only available within single XPage
55 © 2013 IBM Corporation
Twelfth Labour: Cerberus
56 © 2013 IBM Corporation
Inspecting Tools
 Debug Toolbar
● Displays variables and values
● Allows you to easily set timers
● In-built API inspector to test code
● Message logging
● http://www.openntf.org/internal/home.nsf/project.xsp?
action=openDocument&name=XPage%20Debug%20Toolbar
 XPages Log File Reader
● View console
● View logs
● http://www.openntf.org/internal/home.nsf/project.xsp?
action=openDocument&name=XPages%20Log%20File%20Reader
57 © 2013 IBM Corporation
Inspecting Tools
 XPages Toolbox
● CPU Profiler
● Runtime monitoring
● Session dumps
● And more...
● http://www.openntf.org/internal/home.nsf/project.xsp?
action=openDocument&name=XPages%20Toolbox
 Server-Side JavaScript Debugging*
 Java Debugging*
*Useful session: Debug Server Side Javascript, Java, and XPages Apps
Using the SSJS Debugger (AD202)
58 © 2013 IBM Corporation
Benefits Over Classic Notes/Domino
 LotusScript debugger, but nothing easy for formula language
 No easy debugging for traditional Domino web
59 © 2013 IBM Corporation
Agenda
 Introduction
 The Twelve Tasks
 Bonus
 Summary
60 © 2013 IBM Corporation
XPages and Social – With XPages You're Not Alone
 Community blog posts, books, user groups
 OpenNTF (http://openntf.org) resources
● Sample Applications
● Custom Controls
● XSnippets (http://openntf.org/XSnippets.nsf/home.xsp)
● OSGi plugins
● Libraries to extend Domino Designer
● OpenNTF Webinars (http://webinars.openntf.org)
 Import and Export for Domino Designer Plugin
● Easily import resources from OpenNTF
● Easily export to file system or package for OpenNTF
61 © 2013 IBM Corporation
XPages and Social – With XPages You're Not Alone
 Social controls in Extension Library for easy integration with
● IBM Connections
● Sametime
● Twitter
● Facebook
● Dropbox
 Social Plugins
● Like a single control
to start a Sametime
chat with any editor
of the current document
62 © 2013 IBM Corporation
Agenda
 Introduction
 The Twelve Tasks
 Bonus
 Summary
63 © 2013 IBM Corporation
Summary
 Twelve examples of areas where XPages is
● Quicker
● Easier
● More flexible
● Extensible
● Build reusable skills within or beyond Domino
● The learning curve is worth it!
64 © 2013 IBM Corporation
XPages Resources
 XPages.Info (http://xpages.info)
 XPages Forum (http://www-10.lotus.com/ldd/xpagesforum.nsf)
 Notes/Domino Application Development Wiki
(http://www-10.lotus.com/ldd/ddwiki.nsf)
 YouAtNotes XPages wiki (http://www.xpageswiki.com)
 Notes in 9 (http://www.notesin9.com)
 Stack Overflow (http://stackoverflow.com/questions/tagged/xpages)
 Mastering XPages (IBM Press)
 XPages Extension Library (IBM Press)
 XPages Portable Command Guide (IBM Press)
65 © 2013 IBM Corporation
References (Classical Mythology / Greek Literature)
 Timeless Myths (http://www.timelessmyths.com)
 Family tree of descendants of Perseus, including Hercules
(http://timelessmyths.com/classical/family3c.html)
 Theoi Greek Mythology (http://www.theoi.com)
 Jason & Medea (http://jasonmedea.net)
 Euripides, Heracles – covers Hercules killing his wife Megara
 Euripides, Alcestis – covers Hercules rescue of Alcestis
 Sophocles, Women of Trachis (Trachiniae) – covers Hercules' death
 Seneca, Hercules Furens – Roman tragedy, covers Hercules killing his
wife Megara
 Hercules' life also covered in works of Ovid (Metamorphoses),
Apollodorus, Diodorus Siculus, Hesiod (The Shield of Herakles), Hyginus
66 © 2013 IBM Corporation
References (Popular Culture)
 “Hercules” (Disney animated movie 1997)
 “Hercules: The Legendary Journeys” (TV show 1995 – 1999)
 “The Three Stooges Meet Hercules” (Movie 1962)
 “Jason and The Argonauts” (Movie 1963)
 Countless other movies, TV shows, comic books, and video games
67 © 2013 IBM Corporation
Other Related Connect 2013 Sessions
 Debug Server Side Javascript, Java, and XPages Apps Using the SSJS Debugger
(AD202)
 IBM Domino Designer: Tips and Tricks for Maximum Productivity (AD203)
 How To Develop Great Applications Using XPages Design Patterns (AD204)
 Successfully Delivering XPages Projects - All Things Considered (AD205)
 IBM Lotus Domino XPages: Embrace, Extend, Integrate (AD206)
 IBM Lotus Domino XPages: Beyond Domino Documents and Views (AD207)
 IBM Lotus Domino XPages Performance in a Nutshell (AD208)
 jQuery: The World's Most Popular JavaScript Library Comes to XPages (BP103)
 Deploying and Managing IBM Lotus Domino XPages Applications (BP201)
 XPages Development: Modernize Yourself! (BP202)
 Custom Controls: Powerful, But Not Rocket Science! (BP205)
 Meet the Java Application Server You Already Own - IBM Domino (BP207)
 XPages Blast (BP208)
 In The Land of Social Apps, the API is King (BP209)
68 © 2013 IBM Corporation
Other Related Connect 2013 Sessions (continued)
 Using a Mobile Approach: Strategies for Mobilizing Your IBM Domino Applications
(BP210)
 Lessons Learned from the World's Largest XPage Project (BP211)
 Apps, Apps, and More Apps: Meet the Very Best Open Source Apps from OpenNTF
(BP212)
 XPages Jumpstart (JMP101)
 Extending Your App Arsenal With OpenSocial (JMP102)
 Get the “Jump” on Mobilizing Your IBM Notes and Domino Applications Today! (JMP103)
 Master Class: XPages Performance - Inside Out (JMP401)
 Master Class: Managed Beans and XPages: Your Time Is Now (JMP402)
 Master Class: Reverse Engineering Notes Applications: Separating Truth from Fiction
(JMP403)
 Buried Treasure: Finding the Hidden Gold in Lotus Notes Data (SHOW104)
 XPages: No Experience Needed (SHOW111)
 Building Your First Mobile Application Using XPages (SHOW112)
69 © 2013 IBM Corporation
“It's Better with XPages” Index
1. Themes
2. Repeat Controls
3. In View Edit
4. Design Properties
5. AJAX Partial Page Refresh
6. Pager Controls
7. TODOs
8. Local History / Source Control Management
9. Custom Controls
10. Joining Views
11. Mobile
12. Inspecting Tools
70 © 2013 IBM Corporation
Questions
Paul Withers
ICS Consultant
Intec Systems Ltd
pwithers@intec.co.uk
www.twitter.com/paulswithers
http://www.intec.co.uk/blog
Mike McGarel
Collaborative Solutions Developer
Czarnowski Display Services Inc
mcgarelgramming@gmail.com
www.twitter.com/mmcgarel
www.bleedyellow.com/blogs/
McGarelGramming
© 2013 The Learning Continuum Company, Ltd – This material can not be reproduced or distributed without the express permission of TLCC
Questions????
7
Use the Q&A pane in
WebEx to ask questions
We will answer your
questions verbally
© 2013 The Learning Continuum Company, Ltd – This material can not be reproduced or distributed without the express permission of TLCC
Question and Answer Time!
8
Teamstudio Questions?
contactus@teamstudio.com
877-228-6178
TLCC Questions?
howardg@tlcc.com paul@tlcc.com
888-241-8522 or 561-953-0095
Mike McGarel Paul Della-NebbiaHoward GreenbergPaul Withers
Upcoming Events:
TLCC Spring Sale
MW LUG in Indianapolis
•TLCC TackItOn the day before
ICON UK in Brighton
•TLCC TackItOn the day after
#XPages
@mmcgarel
@paulswithers
@PaulDN
@TLCCLtd
@Teamstudio
Taline Badrikian

Weitere ähnliche Inhalte

Was ist angesagt?

IBM Social Business Toolkit SDK - Playground and Scenarios
IBM Social Business Toolkit SDK - Playground and ScenariosIBM Social Business Toolkit SDK - Playground and Scenarios
IBM Social Business Toolkit SDK - Playground and ScenariosNiklas Heidloff
 
IBM Presents the IBM Notes and Domino Roadmap
IBM Presents the IBM Notes and Domino RoadmapIBM Presents the IBM Notes and Domino Roadmap
IBM Presents the IBM Notes and Domino RoadmapTeamstudio
 
Notes Browser Plugin 9.0.1 - "Accessing legacy Applications"
Notes Browser Plugin 9.0.1 - "Accessing legacy Applications"Notes Browser Plugin 9.0.1 - "Accessing legacy Applications"
Notes Browser Plugin 9.0.1 - "Accessing legacy Applications"jayeshpar2006
 
Id111 - IBM Notes Browser Plug-in at Connect 2014
Id111 - IBM Notes Browser Plug-in at Connect 2014Id111 - IBM Notes Browser Plug-in at Connect 2014
Id111 - IBM Notes Browser Plug-in at Connect 2014rajeshpatil
 
Ibm worklight - going from xpages mobile to native mobile applications
Ibm worklight - going from xpages mobile to native mobile applicationsIbm worklight - going from xpages mobile to native mobile applications
Ibm worklight - going from xpages mobile to native mobile applicationsMark Roden
 
XPages is Workflow's new best friend
XPages is Workflow's new best friendXPages is Workflow's new best friend
XPages is Workflow's new best friendStephan H. Wissel
 
AD308: XPages in a Social World
AD308: XPages in a Social WorldAD308: XPages in a Social World
AD308: XPages in a Social Worldpaidi_ed
 
Tip from ConnectED: Notes Goes Cloud: The IBM Notes Browser Plug-in Integrate...
Tip from ConnectED: Notes Goes Cloud: The IBM Notes Browser Plug-in Integrate...Tip from ConnectED: Notes Goes Cloud: The IBM Notes Browser Plug-in Integrate...
Tip from ConnectED: Notes Goes Cloud: The IBM Notes Browser Plug-in Integrate...SocialBiz UserGroup
 
Programmatic Access to and Extensibility of the IBM SmartCloud for Social Bus...
Programmatic Access to and Extensibility of the IBM SmartCloud for Social Bus...Programmatic Access to and Extensibility of the IBM SmartCloud for Social Bus...
Programmatic Access to and Extensibility of the IBM SmartCloud for Social Bus...IBM Connections Developers
 
Website development &amp; it's trends
Website development &amp; it's trendsWebsite development &amp; it's trends
Website development &amp; it's trendsSunCart Store
 
Lessons Learned from Building Windows 8 Store Apps with MVVM and XAML
Lessons Learned from Building Windows 8 Store Apps with MVVM and XAMLLessons Learned from Building Windows 8 Store Apps with MVVM and XAML
Lessons Learned from Building Windows 8 Store Apps with MVVM and XAMLMike Douglas
 
How to use the Social Business Development Environments
How to use the Social Business Development EnvironmentsHow to use the Social Business Development Environments
How to use the Social Business Development EnvironmentsIBM Connections Developers
 
Philipe Riand - Building Social Applications using the Social Business Toolki...
Philipe Riand - Building Social Applications using the Social Business Toolki...Philipe Riand - Building Social Applications using the Social Business Toolki...
Philipe Riand - Building Social Applications using the Social Business Toolki...LetsConnect
 
IBM Connect 2016 - Logging Wars: A Cross Product Tech Clash Between Experts -...
IBM Connect 2016 - Logging Wars: A Cross Product Tech Clash Between Experts -...IBM Connect 2016 - Logging Wars: A Cross Product Tech Clash Between Experts -...
IBM Connect 2016 - Logging Wars: A Cross Product Tech Clash Between Experts -...Chris Miller
 
Uncovering Windows - Silverlight Seminar
Uncovering Windows - Silverlight SeminarUncovering Windows - Silverlight Seminar
Uncovering Windows - Silverlight SeminarAbram John Limpin
 
Build cognitive Apps that help enhance, scale and accelerate Human Expertise
Build cognitive Apps that help enhance, scale and accelerate Human ExpertiseBuild cognitive Apps that help enhance, scale and accelerate Human Expertise
Build cognitive Apps that help enhance, scale and accelerate Human ExpertiseNiklas Heidloff
 
IBM Enterprise Social Solutions on Bluemix (XPages and Connections)
IBM Enterprise Social Solutions  on Bluemix (XPages and Connections)IBM Enterprise Social Solutions  on Bluemix (XPages and Connections)
IBM Enterprise Social Solutions on Bluemix (XPages and Connections)Niklas Heidloff
 
IBM Connect 2014 - AD206 - Build Apps Rapidly by Leveraging Services from IBM...
IBM Connect 2014 - AD206 - Build Apps Rapidly by Leveraging Services from IBM...IBM Connect 2014 - AD206 - Build Apps Rapidly by Leveraging Services from IBM...
IBM Connect 2014 - AD206 - Build Apps Rapidly by Leveraging Services from IBM...Niklas Heidloff
 
Wireless Wednesdays: Introduction to XControls
Wireless Wednesdays: Introduction to XControlsWireless Wednesdays: Introduction to XControls
Wireless Wednesdays: Introduction to XControlsTeamstudio
 

Was ist angesagt? (20)

IBM Social Business Toolkit SDK - Playground and Scenarios
IBM Social Business Toolkit SDK - Playground and ScenariosIBM Social Business Toolkit SDK - Playground and Scenarios
IBM Social Business Toolkit SDK - Playground and Scenarios
 
IBM Presents the IBM Notes and Domino Roadmap
IBM Presents the IBM Notes and Domino RoadmapIBM Presents the IBM Notes and Domino Roadmap
IBM Presents the IBM Notes and Domino Roadmap
 
Notes Browser Plugin 9.0.1 - "Accessing legacy Applications"
Notes Browser Plugin 9.0.1 - "Accessing legacy Applications"Notes Browser Plugin 9.0.1 - "Accessing legacy Applications"
Notes Browser Plugin 9.0.1 - "Accessing legacy Applications"
 
Id111 - IBM Notes Browser Plug-in at Connect 2014
Id111 - IBM Notes Browser Plug-in at Connect 2014Id111 - IBM Notes Browser Plug-in at Connect 2014
Id111 - IBM Notes Browser Plug-in at Connect 2014
 
Ibm worklight - going from xpages mobile to native mobile applications
Ibm worklight - going from xpages mobile to native mobile applicationsIbm worklight - going from xpages mobile to native mobile applications
Ibm worklight - going from xpages mobile to native mobile applications
 
XPages is Workflow's new best friend
XPages is Workflow's new best friendXPages is Workflow's new best friend
XPages is Workflow's new best friend
 
AD308: XPages in a Social World
AD308: XPages in a Social WorldAD308: XPages in a Social World
AD308: XPages in a Social World
 
Tip from ConnectED: Notes Goes Cloud: The IBM Notes Browser Plug-in Integrate...
Tip from ConnectED: Notes Goes Cloud: The IBM Notes Browser Plug-in Integrate...Tip from ConnectED: Notes Goes Cloud: The IBM Notes Browser Plug-in Integrate...
Tip from ConnectED: Notes Goes Cloud: The IBM Notes Browser Plug-in Integrate...
 
Programmatic Access to and Extensibility of the IBM SmartCloud for Social Bus...
Programmatic Access to and Extensibility of the IBM SmartCloud for Social Bus...Programmatic Access to and Extensibility of the IBM SmartCloud for Social Bus...
Programmatic Access to and Extensibility of the IBM SmartCloud for Social Bus...
 
Website development &amp; it's trends
Website development &amp; it's trendsWebsite development &amp; it's trends
Website development &amp; it's trends
 
Lessons Learned from Building Windows 8 Store Apps with MVVM and XAML
Lessons Learned from Building Windows 8 Store Apps with MVVM and XAMLLessons Learned from Building Windows 8 Store Apps with MVVM and XAML
Lessons Learned from Building Windows 8 Store Apps with MVVM and XAML
 
Lotusphere 2012 AD105
Lotusphere 2012 AD105Lotusphere 2012 AD105
Lotusphere 2012 AD105
 
How to use the Social Business Development Environments
How to use the Social Business Development EnvironmentsHow to use the Social Business Development Environments
How to use the Social Business Development Environments
 
Philipe Riand - Building Social Applications using the Social Business Toolki...
Philipe Riand - Building Social Applications using the Social Business Toolki...Philipe Riand - Building Social Applications using the Social Business Toolki...
Philipe Riand - Building Social Applications using the Social Business Toolki...
 
IBM Connect 2016 - Logging Wars: A Cross Product Tech Clash Between Experts -...
IBM Connect 2016 - Logging Wars: A Cross Product Tech Clash Between Experts -...IBM Connect 2016 - Logging Wars: A Cross Product Tech Clash Between Experts -...
IBM Connect 2016 - Logging Wars: A Cross Product Tech Clash Between Experts -...
 
Uncovering Windows - Silverlight Seminar
Uncovering Windows - Silverlight SeminarUncovering Windows - Silverlight Seminar
Uncovering Windows - Silverlight Seminar
 
Build cognitive Apps that help enhance, scale and accelerate Human Expertise
Build cognitive Apps that help enhance, scale and accelerate Human ExpertiseBuild cognitive Apps that help enhance, scale and accelerate Human Expertise
Build cognitive Apps that help enhance, scale and accelerate Human Expertise
 
IBM Enterprise Social Solutions on Bluemix (XPages and Connections)
IBM Enterprise Social Solutions  on Bluemix (XPages and Connections)IBM Enterprise Social Solutions  on Bluemix (XPages and Connections)
IBM Enterprise Social Solutions on Bluemix (XPages and Connections)
 
IBM Connect 2014 - AD206 - Build Apps Rapidly by Leveraging Services from IBM...
IBM Connect 2014 - AD206 - Build Apps Rapidly by Leveraging Services from IBM...IBM Connect 2014 - AD206 - Build Apps Rapidly by Leveraging Services from IBM...
IBM Connect 2014 - AD206 - Build Apps Rapidly by Leveraging Services from IBM...
 
Wireless Wednesdays: Introduction to XControls
Wireless Wednesdays: Introduction to XControlsWireless Wednesdays: Introduction to XControls
Wireless Wednesdays: Introduction to XControls
 

Andere mochten auch

Show110 | Using the XPages Extension Library for the Real World
Show110 | Using the XPages Extension Library for the Real WorldShow110 | Using the XPages Extension Library for the Real World
Show110 | Using the XPages Extension Library for the Real Worldpdhannan
 
2013 GMC Yukon SLE Philadelphia
2013 GMC Yukon SLE Philadelphia2013 GMC Yukon SLE Philadelphia
2013 GMC Yukon SLE PhiladelphiaFred Beans GMC
 
Presentation1
Presentation1Presentation1
Presentation1DBABI2389
 
Tema 3 Autonomía e promoción das relacións de igualdade
Tema 3 Autonomía e promoción das relacións de igualdadeTema 3 Autonomía e promoción das relacións de igualdade
Tema 3 Autonomía e promoción das relacións de igualdademarcendon
 
Horizon presentazione IT 1.5
Horizon presentazione IT 1.5Horizon presentazione IT 1.5
Horizon presentazione IT 1.5albertocrosio
 
It's Not Infernal: Dante's Nine Circles of XPages Heaven
It's Not Infernal: Dante's Nine Circles of XPages HeavenIt's Not Infernal: Dante's Nine Circles of XPages Heaven
It's Not Infernal: Dante's Nine Circles of XPages HeavenTeamstudio
 
Unplugged Mobile Controls User Group Kickoff Meeting
Unplugged Mobile Controls User Group Kickoff MeetingUnplugged Mobile Controls User Group Kickoff Meeting
Unplugged Mobile Controls User Group Kickoff MeetingTeamstudio
 
Creating Valuable Relationships
Creating Valuable RelationshipsCreating Valuable Relationships
Creating Valuable RelationshipsGiovanni Dubois
 
Stork fertility center 01
Stork fertility center 01Stork fertility center 01
Stork fertility center 01宛蓉 謝
 
Learn SystemC Erotically part1
Learn SystemC Erotically part1Learn SystemC Erotically part1
Learn SystemC Erotically part1KSuzukiii
 
Doa sholawat akasah
Doa sholawat akasahDoa sholawat akasah
Doa sholawat akasahayaerdas
 
Juvenal blanco, powerpoint3
Juvenal blanco, powerpoint3Juvenal blanco, powerpoint3
Juvenal blanco, powerpoint3juve1995
 
Cách massage tốt cho mắt
Cách massage tốt cho mắtCách massage tốt cho mắt
Cách massage tốt cho mắtlandatrangmin
 

Andere mochten auch (17)

Show110 | Using the XPages Extension Library for the Real World
Show110 | Using the XPages Extension Library for the Real WorldShow110 | Using the XPages Extension Library for the Real World
Show110 | Using the XPages Extension Library for the Real World
 
2013 GMC Yukon SLE Philadelphia
2013 GMC Yukon SLE Philadelphia2013 GMC Yukon SLE Philadelphia
2013 GMC Yukon SLE Philadelphia
 
Presentation1
Presentation1Presentation1
Presentation1
 
Tema 3 Autonomía e promoción das relacións de igualdade
Tema 3 Autonomía e promoción das relacións de igualdadeTema 3 Autonomía e promoción das relacións de igualdade
Tema 3 Autonomía e promoción das relacións de igualdade
 
Horizon presentazione IT 1.5
Horizon presentazione IT 1.5Horizon presentazione IT 1.5
Horizon presentazione IT 1.5
 
Tempo July 2015
Tempo July 2015Tempo July 2015
Tempo July 2015
 
It's Not Infernal: Dante's Nine Circles of XPages Heaven
It's Not Infernal: Dante's Nine Circles of XPages HeavenIt's Not Infernal: Dante's Nine Circles of XPages Heaven
It's Not Infernal: Dante's Nine Circles of XPages Heaven
 
Brand & Branding
Brand & BrandingBrand & Branding
Brand & Branding
 
Unplugged Mobile Controls User Group Kickoff Meeting
Unplugged Mobile Controls User Group Kickoff MeetingUnplugged Mobile Controls User Group Kickoff Meeting
Unplugged Mobile Controls User Group Kickoff Meeting
 
Training
TrainingTraining
Training
 
Creating Valuable Relationships
Creating Valuable RelationshipsCreating Valuable Relationships
Creating Valuable Relationships
 
Stork fertility center 01
Stork fertility center 01Stork fertility center 01
Stork fertility center 01
 
Learn SystemC Erotically part1
Learn SystemC Erotically part1Learn SystemC Erotically part1
Learn SystemC Erotically part1
 
Doa sholawat akasah
Doa sholawat akasahDoa sholawat akasah
Doa sholawat akasah
 
Juvenal blanco, powerpoint3
Juvenal blanco, powerpoint3Juvenal blanco, powerpoint3
Juvenal blanco, powerpoint3
 
Brevet2016
Brevet2016Brevet2016
Brevet2016
 
Cách massage tốt cho mắt
Cách massage tốt cho mắtCách massage tốt cho mắt
Cách massage tốt cho mắt
 

Ähnlich wie Twelve Tasks Made Easier with IBM Domino XPages

BP206 It's Not Herculean: 12 Tasks Made Easier with IBM Domino XPages
BP206 It's Not Herculean: 12 Tasks Made Easier with IBM Domino XPagesBP206 It's Not Herculean: 12 Tasks Made Easier with IBM Domino XPages
BP206 It's Not Herculean: 12 Tasks Made Easier with IBM Domino XPagesPaul Withers
 
What's New in IBM iNotes 9.0 Social Edition & IBM Notes Browser Plugin
What's New in IBM iNotes 9.0 Social Edition & IBM Notes Browser PluginWhat's New in IBM iNotes 9.0 Social Edition & IBM Notes Browser Plugin
What's New in IBM iNotes 9.0 Social Edition & IBM Notes Browser PluginRahul A. Garg
 
A powerful web application server (intravision IBM Connect 2013 Update) Febru...
A powerful web application server (intravision IBM Connect 2013 Update) Febru...A powerful web application server (intravision IBM Connect 2013 Update) Febru...
A powerful web application server (intravision IBM Connect 2013 Update) Febru...Per Henrik Lausten
 
IBM Lotusphere 2013 AD109: Using the IBM® Sametime® Proxy SDK: WebSphere Port...
IBM Lotusphere 2013 AD109: Using the IBM® Sametime® Proxy SDK: WebSphere Port...IBM Lotusphere 2013 AD109: Using the IBM® Sametime® Proxy SDK: WebSphere Port...
IBM Lotusphere 2013 AD109: Using the IBM® Sametime® Proxy SDK: WebSphere Port...William Holmes
 
IBM Lotusphere 2011 AD306 - IBM Lotus Sametime Proxy: A Collaborative Recipe...
IBM Lotusphere 2011 AD306 - IBM Lotus Sametime Proxy:  A Collaborative Recipe...IBM Lotusphere 2011 AD306 - IBM Lotus Sametime Proxy:  A Collaborative Recipe...
IBM Lotusphere 2011 AD306 - IBM Lotus Sametime Proxy: A Collaborative Recipe...William Holmes
 
What’s new for Developers in IBM Domino & Domino Designer 9.0.1
What’s new for Developers in IBM Domino & Domino Designer 9.0.1What’s new for Developers in IBM Domino & Domino Designer 9.0.1
What’s new for Developers in IBM Domino & Domino Designer 9.0.1IBM Connections Developers
 
What's new in ibm i notes 9.0
What's new in ibm i notes 9.0What's new in ibm i notes 9.0
What's new in ibm i notes 9.0Ranjit Rai
 
Lessons learned from the worlds largest XPage project
Lessons learned from the worlds largest XPage projectLessons learned from the worlds largest XPage project
Lessons learned from the worlds largest XPage projectMark Roden
 
XPages: No Experience Needed
XPages: No Experience NeededXPages: No Experience Needed
XPages: No Experience NeededKathy Brown
 
XPages Blast - Lotusphere 2012
XPages Blast - Lotusphere 2012XPages Blast - Lotusphere 2012
XPages Blast - Lotusphere 2012Tim Clark
 
Next Generation Of Enterprise RIA's
Next Generation Of Enterprise RIA'sNext Generation Of Enterprise RIA's
Next Generation Of Enterprise RIA'sMatthias Zeller
 
Plastic SCM: Entreprise Version Control Platform for Modern Applications and ...
Plastic SCM: Entreprise Version Control Platform for Modern Applications and ...Plastic SCM: Entreprise Version Control Platform for Modern Applications and ...
Plastic SCM: Entreprise Version Control Platform for Modern Applications and ...Kiko Monteverde
 
AD114 -- Beyond the Mobile Browser? Building Rich Mobile Applications for IBM...
AD114 -- Beyond the Mobile Browser? Building Rich Mobile Applications for IBM...AD114 -- Beyond the Mobile Browser? Building Rich Mobile Applications for IBM...
AD114 -- Beyond the Mobile Browser? Building Rich Mobile Applications for IBM...ddrschiw
 
We4IT lcty 2013 - infra-man - whats new in ibm domino application development
We4IT lcty 2013 - infra-man - whats new in ibm domino application developmentWe4IT lcty 2013 - infra-man - whats new in ibm domino application development
We4IT lcty 2013 - infra-man - whats new in ibm domino application developmentWe4IT Group
 
Where Does IBM Web Experience Factory Fit in your Architecture? TECH-D22 from...
Where Does IBM Web Experience Factory Fit in your Architecture? TECH-D22 from...Where Does IBM Web Experience Factory Fit in your Architecture? TECH-D22 from...
Where Does IBM Web Experience Factory Fit in your Architecture? TECH-D22 from...Davalen LLC
 
AD101: IBM Domino Application Development Futures
AD101: IBM Domino Application Development FuturesAD101: IBM Domino Application Development Futures
AD101: IBM Domino Application Development FuturesEamon Muldoon
 
IBM Connect 2014 KEY102
IBM Connect 2014 KEY102IBM Connect 2014 KEY102
IBM Connect 2014 KEY102Scott Souder
 
What's new in Portal and WCM 8.5
What's new in Portal and WCM 8.5What's new in Portal and WCM 8.5
What's new in Portal and WCM 8.5Vinayak Tavargeri
 

Ähnlich wie Twelve Tasks Made Easier with IBM Domino XPages (20)

BP206 It's Not Herculean: 12 Tasks Made Easier with IBM Domino XPages
BP206 It's Not Herculean: 12 Tasks Made Easier with IBM Domino XPagesBP206 It's Not Herculean: 12 Tasks Made Easier with IBM Domino XPages
BP206 It's Not Herculean: 12 Tasks Made Easier with IBM Domino XPages
 
What's New in IBM iNotes 9.0 Social Edition & IBM Notes Browser Plugin
What's New in IBM iNotes 9.0 Social Edition & IBM Notes Browser PluginWhat's New in IBM iNotes 9.0 Social Edition & IBM Notes Browser Plugin
What's New in IBM iNotes 9.0 Social Edition & IBM Notes Browser Plugin
 
What's new in designer
What's new in designerWhat's new in designer
What's new in designer
 
A powerful web application server (intravision IBM Connect 2013 Update) Febru...
A powerful web application server (intravision IBM Connect 2013 Update) Febru...A powerful web application server (intravision IBM Connect 2013 Update) Febru...
A powerful web application server (intravision IBM Connect 2013 Update) Febru...
 
IBM Lotusphere 2013 AD109: Using the IBM® Sametime® Proxy SDK: WebSphere Port...
IBM Lotusphere 2013 AD109: Using the IBM® Sametime® Proxy SDK: WebSphere Port...IBM Lotusphere 2013 AD109: Using the IBM® Sametime® Proxy SDK: WebSphere Port...
IBM Lotusphere 2013 AD109: Using the IBM® Sametime® Proxy SDK: WebSphere Port...
 
IBM Lotusphere 2011 AD306 - IBM Lotus Sametime Proxy: A Collaborative Recipe...
IBM Lotusphere 2011 AD306 - IBM Lotus Sametime Proxy:  A Collaborative Recipe...IBM Lotusphere 2011 AD306 - IBM Lotus Sametime Proxy:  A Collaborative Recipe...
IBM Lotusphere 2011 AD306 - IBM Lotus Sametime Proxy: A Collaborative Recipe...
 
What’s new for Developers in IBM Domino & Domino Designer 9.0.1
What’s new for Developers in IBM Domino & Domino Designer 9.0.1What’s new for Developers in IBM Domino & Domino Designer 9.0.1
What’s new for Developers in IBM Domino & Domino Designer 9.0.1
 
What's new in ibm i notes 9.0
What's new in ibm i notes 9.0What's new in ibm i notes 9.0
What's new in ibm i notes 9.0
 
Lessons learned from the worlds largest XPage project
Lessons learned from the worlds largest XPage projectLessons learned from the worlds largest XPage project
Lessons learned from the worlds largest XPage project
 
XPages: No Experience Needed
XPages: No Experience NeededXPages: No Experience Needed
XPages: No Experience Needed
 
XPages Blast - Lotusphere 2012
XPages Blast - Lotusphere 2012XPages Blast - Lotusphere 2012
XPages Blast - Lotusphere 2012
 
Next Generation Of Enterprise RIA's
Next Generation Of Enterprise RIA'sNext Generation Of Enterprise RIA's
Next Generation Of Enterprise RIA's
 
Plastic SCM: Entreprise Version Control Platform for Modern Applications and ...
Plastic SCM: Entreprise Version Control Platform for Modern Applications and ...Plastic SCM: Entreprise Version Control Platform for Modern Applications and ...
Plastic SCM: Entreprise Version Control Platform for Modern Applications and ...
 
AD114 -- Beyond the Mobile Browser? Building Rich Mobile Applications for IBM...
AD114 -- Beyond the Mobile Browser? Building Rich Mobile Applications for IBM...AD114 -- Beyond the Mobile Browser? Building Rich Mobile Applications for IBM...
AD114 -- Beyond the Mobile Browser? Building Rich Mobile Applications for IBM...
 
Code One 2018 maven
Code One 2018   mavenCode One 2018   maven
Code One 2018 maven
 
We4IT lcty 2013 - infra-man - whats new in ibm domino application development
We4IT lcty 2013 - infra-man - whats new in ibm domino application developmentWe4IT lcty 2013 - infra-man - whats new in ibm domino application development
We4IT lcty 2013 - infra-man - whats new in ibm domino application development
 
Where Does IBM Web Experience Factory Fit in your Architecture? TECH-D22 from...
Where Does IBM Web Experience Factory Fit in your Architecture? TECH-D22 from...Where Does IBM Web Experience Factory Fit in your Architecture? TECH-D22 from...
Where Does IBM Web Experience Factory Fit in your Architecture? TECH-D22 from...
 
AD101: IBM Domino Application Development Futures
AD101: IBM Domino Application Development FuturesAD101: IBM Domino Application Development Futures
AD101: IBM Domino Application Development Futures
 
IBM Connect 2014 KEY102
IBM Connect 2014 KEY102IBM Connect 2014 KEY102
IBM Connect 2014 KEY102
 
What's new in Portal and WCM 8.5
What's new in Portal and WCM 8.5What's new in Portal and WCM 8.5
What's new in Portal and WCM 8.5
 

Mehr von Teamstudio

Search Terms and Design Complexity: A Tutorial Before Modernizing or Migrating
Search Terms and Design Complexity: A Tutorial Before Modernizing or MigratingSearch Terms and Design Complexity: A Tutorial Before Modernizing or Migrating
Search Terms and Design Complexity: A Tutorial Before Modernizing or MigratingTeamstudio
 
SmartNSF - 100% Smart - and in Color!
SmartNSF - 100% Smart - and in Color!SmartNSF - 100% Smart - and in Color!
SmartNSF - 100% Smart - and in Color!Teamstudio
 
Back from the Dead: When Bad Code Kills a Good Server
Back from the Dead: When Bad Code Kills a Good ServerBack from the Dead: When Bad Code Kills a Good Server
Back from the Dead: When Bad Code Kills a Good ServerTeamstudio
 
Understand Usage with Detailed Access Information
Understand Usage with Detailed Access InformationUnderstand Usage with Detailed Access Information
Understand Usage with Detailed Access InformationTeamstudio
 
IBM Presents the Notes Domino Roadmap and a Deep Dive into Feature Pack 8
IBM Presents the Notes Domino Roadmap and a Deep Dive into Feature Pack 8IBM Presents the Notes Domino Roadmap and a Deep Dive into Feature Pack 8
IBM Presents the Notes Domino Roadmap and a Deep Dive into Feature Pack 8Teamstudio
 
Marty, You're Just Not Thinking Fourth Dimensionally
Marty, You're Just Not Thinking Fourth DimensionallyMarty, You're Just Not Thinking Fourth Dimensionally
Marty, You're Just Not Thinking Fourth DimensionallyTeamstudio
 
XPages and jQuery DataTables: Simplifying View Creation while Maximizing Func...
XPages and jQuery DataTables: Simplifying View Creation while Maximizing Func...XPages and jQuery DataTables: Simplifying View Creation while Maximizing Func...
XPages and jQuery DataTables: Simplifying View Creation while Maximizing Func...Teamstudio
 
Take a Trip Into the Forest: A Java Primer on Maps, Trees, and Collections
Take a Trip Into the Forest: A Java Primer on Maps, Trees, and Collections Take a Trip Into the Forest: A Java Primer on Maps, Trees, and Collections
Take a Trip Into the Forest: A Java Primer on Maps, Trees, and Collections Teamstudio
 
Expanding XPages with Bootstrap Plugins for Ultimate Usability
Expanding XPages with Bootstrap Plugins for Ultimate UsabilityExpanding XPages with Bootstrap Plugins for Ultimate Usability
Expanding XPages with Bootstrap Plugins for Ultimate UsabilityTeamstudio
 
Getting Started with the OpenNTF Domino API
Getting Started with the OpenNTF Domino APIGetting Started with the OpenNTF Domino API
Getting Started with the OpenNTF Domino APITeamstudio
 
Understand the True Business Usage of Notes Applications with Usage Auditor
Understand the True Business Usage of Notes Applications with Usage AuditorUnderstand the True Business Usage of Notes Applications with Usage Auditor
Understand the True Business Usage of Notes Applications with Usage AuditorTeamstudio
 
Optimus XPages: An Explosion of Techniques and Best Practices
Optimus XPages: An Explosion of Techniques and Best PracticesOptimus XPages: An Explosion of Techniques and Best Practices
Optimus XPages: An Explosion of Techniques and Best PracticesTeamstudio
 
Building Responsive Applications Using XPages
Building Responsive Applications Using XPagesBuilding Responsive Applications Using XPages
Building Responsive Applications Using XPagesTeamstudio
 
Using Cool New Frameworks in (Mobile) Domino Apps
Using Cool New Frameworks in (Mobile) Domino AppsUsing Cool New Frameworks in (Mobile) Domino Apps
Using Cool New Frameworks in (Mobile) Domino AppsTeamstudio
 
Move Your XPages Applications to the Fast Lane
Move Your XPages Applications to the Fast LaneMove Your XPages Applications to the Fast Lane
Move Your XPages Applications to the Fast LaneTeamstudio
 
An Introduction to the Model-View-Controller Pattern
An Introduction to the Model-View-Controller PatternAn Introduction to the Model-View-Controller Pattern
An Introduction to the Model-View-Controller PatternTeamstudio
 
Mobilisez vos Applications IBM Notes avec Teamstudio Unplugged ! (French Lang...
Mobilisez vos Applications IBM Notes avec Teamstudio Unplugged ! (French Lang...Mobilisez vos Applications IBM Notes avec Teamstudio Unplugged ! (French Lang...
Mobilisez vos Applications IBM Notes avec Teamstudio Unplugged ! (French Lang...Teamstudio
 
Transformations: Smart Application Migration to XPages
Transformations: Smart Application Migration to XPagesTransformations: Smart Application Migration to XPages
Transformations: Smart Application Migration to XPagesTeamstudio
 
Presenting Data – An Alternative to the View Control
Presenting Data – An Alternative to the View ControlPresenting Data – An Alternative to the View Control
Presenting Data – An Alternative to the View ControlTeamstudio
 
A Notes Developer's Journey into Java
A Notes Developer's Journey into JavaA Notes Developer's Journey into Java
A Notes Developer's Journey into JavaTeamstudio
 

Mehr von Teamstudio (20)

Search Terms and Design Complexity: A Tutorial Before Modernizing or Migrating
Search Terms and Design Complexity: A Tutorial Before Modernizing or MigratingSearch Terms and Design Complexity: A Tutorial Before Modernizing or Migrating
Search Terms and Design Complexity: A Tutorial Before Modernizing or Migrating
 
SmartNSF - 100% Smart - and in Color!
SmartNSF - 100% Smart - and in Color!SmartNSF - 100% Smart - and in Color!
SmartNSF - 100% Smart - and in Color!
 
Back from the Dead: When Bad Code Kills a Good Server
Back from the Dead: When Bad Code Kills a Good ServerBack from the Dead: When Bad Code Kills a Good Server
Back from the Dead: When Bad Code Kills a Good Server
 
Understand Usage with Detailed Access Information
Understand Usage with Detailed Access InformationUnderstand Usage with Detailed Access Information
Understand Usage with Detailed Access Information
 
IBM Presents the Notes Domino Roadmap and a Deep Dive into Feature Pack 8
IBM Presents the Notes Domino Roadmap and a Deep Dive into Feature Pack 8IBM Presents the Notes Domino Roadmap and a Deep Dive into Feature Pack 8
IBM Presents the Notes Domino Roadmap and a Deep Dive into Feature Pack 8
 
Marty, You're Just Not Thinking Fourth Dimensionally
Marty, You're Just Not Thinking Fourth DimensionallyMarty, You're Just Not Thinking Fourth Dimensionally
Marty, You're Just Not Thinking Fourth Dimensionally
 
XPages and jQuery DataTables: Simplifying View Creation while Maximizing Func...
XPages and jQuery DataTables: Simplifying View Creation while Maximizing Func...XPages and jQuery DataTables: Simplifying View Creation while Maximizing Func...
XPages and jQuery DataTables: Simplifying View Creation while Maximizing Func...
 
Take a Trip Into the Forest: A Java Primer on Maps, Trees, and Collections
Take a Trip Into the Forest: A Java Primer on Maps, Trees, and Collections Take a Trip Into the Forest: A Java Primer on Maps, Trees, and Collections
Take a Trip Into the Forest: A Java Primer on Maps, Trees, and Collections
 
Expanding XPages with Bootstrap Plugins for Ultimate Usability
Expanding XPages with Bootstrap Plugins for Ultimate UsabilityExpanding XPages with Bootstrap Plugins for Ultimate Usability
Expanding XPages with Bootstrap Plugins for Ultimate Usability
 
Getting Started with the OpenNTF Domino API
Getting Started with the OpenNTF Domino APIGetting Started with the OpenNTF Domino API
Getting Started with the OpenNTF Domino API
 
Understand the True Business Usage of Notes Applications with Usage Auditor
Understand the True Business Usage of Notes Applications with Usage AuditorUnderstand the True Business Usage of Notes Applications with Usage Auditor
Understand the True Business Usage of Notes Applications with Usage Auditor
 
Optimus XPages: An Explosion of Techniques and Best Practices
Optimus XPages: An Explosion of Techniques and Best PracticesOptimus XPages: An Explosion of Techniques and Best Practices
Optimus XPages: An Explosion of Techniques and Best Practices
 
Building Responsive Applications Using XPages
Building Responsive Applications Using XPagesBuilding Responsive Applications Using XPages
Building Responsive Applications Using XPages
 
Using Cool New Frameworks in (Mobile) Domino Apps
Using Cool New Frameworks in (Mobile) Domino AppsUsing Cool New Frameworks in (Mobile) Domino Apps
Using Cool New Frameworks in (Mobile) Domino Apps
 
Move Your XPages Applications to the Fast Lane
Move Your XPages Applications to the Fast LaneMove Your XPages Applications to the Fast Lane
Move Your XPages Applications to the Fast Lane
 
An Introduction to the Model-View-Controller Pattern
An Introduction to the Model-View-Controller PatternAn Introduction to the Model-View-Controller Pattern
An Introduction to the Model-View-Controller Pattern
 
Mobilisez vos Applications IBM Notes avec Teamstudio Unplugged ! (French Lang...
Mobilisez vos Applications IBM Notes avec Teamstudio Unplugged ! (French Lang...Mobilisez vos Applications IBM Notes avec Teamstudio Unplugged ! (French Lang...
Mobilisez vos Applications IBM Notes avec Teamstudio Unplugged ! (French Lang...
 
Transformations: Smart Application Migration to XPages
Transformations: Smart Application Migration to XPagesTransformations: Smart Application Migration to XPages
Transformations: Smart Application Migration to XPages
 
Presenting Data – An Alternative to the View Control
Presenting Data – An Alternative to the View ControlPresenting Data – An Alternative to the View Control
Presenting Data – An Alternative to the View Control
 
A Notes Developer's Journey into Java
A Notes Developer's Journey into JavaA Notes Developer's Journey into Java
A Notes Developer's Journey into Java
 

Kürzlich hochgeladen

Unleash Your Potential - Namagunga Girls Coding Club
Unleash Your Potential - Namagunga Girls Coding ClubUnleash Your Potential - Namagunga Girls Coding Club
Unleash Your Potential - Namagunga Girls Coding ClubKalema Edgar
 
"ML in Production",Oleksandr Bagan
"ML in Production",Oleksandr Bagan"ML in Production",Oleksandr Bagan
"ML in Production",Oleksandr BaganFwdays
 
How to write a Business Continuity Plan
How to write a Business Continuity PlanHow to write a Business Continuity Plan
How to write a Business Continuity PlanDatabarracks
 
Streamlining Python Development: A Guide to a Modern Project Setup
Streamlining Python Development: A Guide to a Modern Project SetupStreamlining Python Development: A Guide to a Modern Project Setup
Streamlining Python Development: A Guide to a Modern Project SetupFlorian Wilhelm
 
How AI, OpenAI, and ChatGPT impact business and software.
How AI, OpenAI, and ChatGPT impact business and software.How AI, OpenAI, and ChatGPT impact business and software.
How AI, OpenAI, and ChatGPT impact business and software.Curtis Poe
 
Use of FIDO in the Payments and Identity Landscape: FIDO Paris Seminar.pptx
Use of FIDO in the Payments and Identity Landscape: FIDO Paris Seminar.pptxUse of FIDO in the Payments and Identity Landscape: FIDO Paris Seminar.pptx
Use of FIDO in the Payments and Identity Landscape: FIDO Paris Seminar.pptxLoriGlavin3
 
SIP trunking in Janus @ Kamailio World 2024
SIP trunking in Janus @ Kamailio World 2024SIP trunking in Janus @ Kamailio World 2024
SIP trunking in Janus @ Kamailio World 2024Lorenzo Miniero
 
What's New in Teams Calling, Meetings and Devices March 2024
What's New in Teams Calling, Meetings and Devices March 2024What's New in Teams Calling, Meetings and Devices March 2024
What's New in Teams Calling, Meetings and Devices March 2024Stephanie Beckett
 
The Ultimate Guide to Choosing WordPress Pros and Cons
The Ultimate Guide to Choosing WordPress Pros and ConsThe Ultimate Guide to Choosing WordPress Pros and Cons
The Ultimate Guide to Choosing WordPress Pros and ConsPixlogix Infotech
 
Are Multi-Cloud and Serverless Good or Bad?
Are Multi-Cloud and Serverless Good or Bad?Are Multi-Cloud and Serverless Good or Bad?
Are Multi-Cloud and Serverless Good or Bad?Mattias Andersson
 
Unraveling Multimodality with Large Language Models.pdf
Unraveling Multimodality with Large Language Models.pdfUnraveling Multimodality with Large Language Models.pdf
Unraveling Multimodality with Large Language Models.pdfAlex Barbosa Coqueiro
 
Scanning the Internet for External Cloud Exposures via SSL Certs
Scanning the Internet for External Cloud Exposures via SSL CertsScanning the Internet for External Cloud Exposures via SSL Certs
Scanning the Internet for External Cloud Exposures via SSL CertsRizwan Syed
 
Dev Dives: Streamline document processing with UiPath Studio Web
Dev Dives: Streamline document processing with UiPath Studio WebDev Dives: Streamline document processing with UiPath Studio Web
Dev Dives: Streamline document processing with UiPath Studio WebUiPathCommunity
 
TrustArc Webinar - How to Build Consumer Trust Through Data Privacy
TrustArc Webinar - How to Build Consumer Trust Through Data PrivacyTrustArc Webinar - How to Build Consumer Trust Through Data Privacy
TrustArc Webinar - How to Build Consumer Trust Through Data PrivacyTrustArc
 
Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024BookNet Canada
 
The Fit for Passkeys for Employee and Consumer Sign-ins: FIDO Paris Seminar.pptx
The Fit for Passkeys for Employee and Consumer Sign-ins: FIDO Paris Seminar.pptxThe Fit for Passkeys for Employee and Consumer Sign-ins: FIDO Paris Seminar.pptx
The Fit for Passkeys for Employee and Consumer Sign-ins: FIDO Paris Seminar.pptxLoriGlavin3
 
"Subclassing and Composition – A Pythonic Tour of Trade-Offs", Hynek Schlawack
"Subclassing and Composition – A Pythonic Tour of Trade-Offs", Hynek Schlawack"Subclassing and Composition – A Pythonic Tour of Trade-Offs", Hynek Schlawack
"Subclassing and Composition – A Pythonic Tour of Trade-Offs", Hynek SchlawackFwdays
 
Hyperautomation and AI/ML: A Strategy for Digital Transformation Success.pdf
Hyperautomation and AI/ML: A Strategy for Digital Transformation Success.pdfHyperautomation and AI/ML: A Strategy for Digital Transformation Success.pdf
Hyperautomation and AI/ML: A Strategy for Digital Transformation Success.pdfPrecisely
 
Ensuring Technical Readiness For Copilot in Microsoft 365
Ensuring Technical Readiness For Copilot in Microsoft 365Ensuring Technical Readiness For Copilot in Microsoft 365
Ensuring Technical Readiness For Copilot in Microsoft 3652toLead Limited
 
Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)
Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)
Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)Mark Simos
 

Kürzlich hochgeladen (20)

Unleash Your Potential - Namagunga Girls Coding Club
Unleash Your Potential - Namagunga Girls Coding ClubUnleash Your Potential - Namagunga Girls Coding Club
Unleash Your Potential - Namagunga Girls Coding Club
 
"ML in Production",Oleksandr Bagan
"ML in Production",Oleksandr Bagan"ML in Production",Oleksandr Bagan
"ML in Production",Oleksandr Bagan
 
How to write a Business Continuity Plan
How to write a Business Continuity PlanHow to write a Business Continuity Plan
How to write a Business Continuity Plan
 
Streamlining Python Development: A Guide to a Modern Project Setup
Streamlining Python Development: A Guide to a Modern Project SetupStreamlining Python Development: A Guide to a Modern Project Setup
Streamlining Python Development: A Guide to a Modern Project Setup
 
How AI, OpenAI, and ChatGPT impact business and software.
How AI, OpenAI, and ChatGPT impact business and software.How AI, OpenAI, and ChatGPT impact business and software.
How AI, OpenAI, and ChatGPT impact business and software.
 
Use of FIDO in the Payments and Identity Landscape: FIDO Paris Seminar.pptx
Use of FIDO in the Payments and Identity Landscape: FIDO Paris Seminar.pptxUse of FIDO in the Payments and Identity Landscape: FIDO Paris Seminar.pptx
Use of FIDO in the Payments and Identity Landscape: FIDO Paris Seminar.pptx
 
SIP trunking in Janus @ Kamailio World 2024
SIP trunking in Janus @ Kamailio World 2024SIP trunking in Janus @ Kamailio World 2024
SIP trunking in Janus @ Kamailio World 2024
 
What's New in Teams Calling, Meetings and Devices March 2024
What's New in Teams Calling, Meetings and Devices March 2024What's New in Teams Calling, Meetings and Devices March 2024
What's New in Teams Calling, Meetings and Devices March 2024
 
The Ultimate Guide to Choosing WordPress Pros and Cons
The Ultimate Guide to Choosing WordPress Pros and ConsThe Ultimate Guide to Choosing WordPress Pros and Cons
The Ultimate Guide to Choosing WordPress Pros and Cons
 
Are Multi-Cloud and Serverless Good or Bad?
Are Multi-Cloud and Serverless Good or Bad?Are Multi-Cloud and Serverless Good or Bad?
Are Multi-Cloud and Serverless Good or Bad?
 
Unraveling Multimodality with Large Language Models.pdf
Unraveling Multimodality with Large Language Models.pdfUnraveling Multimodality with Large Language Models.pdf
Unraveling Multimodality with Large Language Models.pdf
 
Scanning the Internet for External Cloud Exposures via SSL Certs
Scanning the Internet for External Cloud Exposures via SSL CertsScanning the Internet for External Cloud Exposures via SSL Certs
Scanning the Internet for External Cloud Exposures via SSL Certs
 
Dev Dives: Streamline document processing with UiPath Studio Web
Dev Dives: Streamline document processing with UiPath Studio WebDev Dives: Streamline document processing with UiPath Studio Web
Dev Dives: Streamline document processing with UiPath Studio Web
 
TrustArc Webinar - How to Build Consumer Trust Through Data Privacy
TrustArc Webinar - How to Build Consumer Trust Through Data PrivacyTrustArc Webinar - How to Build Consumer Trust Through Data Privacy
TrustArc Webinar - How to Build Consumer Trust Through Data Privacy
 
Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
 
The Fit for Passkeys for Employee and Consumer Sign-ins: FIDO Paris Seminar.pptx
The Fit for Passkeys for Employee and Consumer Sign-ins: FIDO Paris Seminar.pptxThe Fit for Passkeys for Employee and Consumer Sign-ins: FIDO Paris Seminar.pptx
The Fit for Passkeys for Employee and Consumer Sign-ins: FIDO Paris Seminar.pptx
 
"Subclassing and Composition – A Pythonic Tour of Trade-Offs", Hynek Schlawack
"Subclassing and Composition – A Pythonic Tour of Trade-Offs", Hynek Schlawack"Subclassing and Composition – A Pythonic Tour of Trade-Offs", Hynek Schlawack
"Subclassing and Composition – A Pythonic Tour of Trade-Offs", Hynek Schlawack
 
Hyperautomation and AI/ML: A Strategy for Digital Transformation Success.pdf
Hyperautomation and AI/ML: A Strategy for Digital Transformation Success.pdfHyperautomation and AI/ML: A Strategy for Digital Transformation Success.pdf
Hyperautomation and AI/ML: A Strategy for Digital Transformation Success.pdf
 
Ensuring Technical Readiness For Copilot in Microsoft 365
Ensuring Technical Readiness For Copilot in Microsoft 365Ensuring Technical Readiness For Copilot in Microsoft 365
Ensuring Technical Readiness For Copilot in Microsoft 365
 
Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)
Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)
Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)
 

Twelve Tasks Made Easier with IBM Domino XPages

  • 1. Twelve Tasks Made Easier with IBM Domino XPages Tweet about this event: #xpages and mention us: @teamstudio @TLCCLTD @PaulSWithers @mmcgarel April 23, 2013
  • 3. Who we are • Our background is in creating tools for collaborative computing in mid-size and large enterprises, primarily for Lotus Notes • Easy-to-use tools for developers and administrators • 2300+ active customers, 47 countries • Offices in US, UK and Japan • Entered mobile space in 2010 with Unplugged – easy mobilization of Notes apps to Blackberry, Android and iOS
  • 4. Teamstudio Unplugged • Your Mobile Domino Server – take your Notes apps with you! • End users access Notes applications from mobile devices whether online or offline • Leverages existing skills and technology – XPages – Replication model you already know • IBM Collaboration Solutions Award Winner 2013
  • 5. Teamstudio Continuity • Mobile BCM application for smartphones and tablets – iOS, Android and BB • Offline access to all your BCM and Disaster Recovery data • Store plans, contacts, call trees, and more • Client available for download from app stores
  • 6. Teamstudio • Next webinar – June 27th – Dojo Grids in XPages • Visit us at MWLUG – August 21-23 in Indianapolis
  • 7. © 2013 The Learning Continuum Company, Ltd – This material can not be reproduced or distributed without the express permission of TLCC Howard Greenberg TLCC @TLCCLtd Paul Della-Nebbia TLCC @paulDN It’s Not Herculean: Twelve Tasks Made Easier With IBM Lotus Domino XPages 1 #XPages Your Hosts Today:
  • 8. © 2013 The Learning Continuum Company, Ltd – This material can not be reproduced or distributed without the express permission of TLCC 2 Upcoming and Recorded Webinars Next Webinar on June 27th Dojo DataGrid and XPages with Brad Balassaitis www.tlcc.com/xpages-webinar Same web page has a link to previous webinars
  • 9. © 2013 The Learning Continuum Company, Ltd – This material can not be reproduced or distributed without the express permission of TLCC • Seven XPages Courses! FREE !! Introduction to XPages Development JavaScript for XPages Development (8.5 and 9) Developing XPages Using Domino Designer 8.5 / XPages Development 1 for 9 Rapid XPages Development using Application Layout and Dojo UI Controls (8.5 and 9) XPages Development 2 for Notes and Domino 8.5 Mobile XPages for Domino 8.5 and 9 Java 1 for XPages Developers • Self Paced Training – Learn anywhere! – An Instructor is a click away • Instructor Led (Private) • TLCC Mentoring Services 3 TLCC XPages Offerings Spring Sale!!!!
  • 10. © 2013 The Learning Continuum Company, Ltd – This material can not be reproduced or distributed without the express permission of TLCC ICON UK (used to be UK LUG) in Brighton, UK September 1st and 2nd FREE!! www.iconuk.org Both events feature a TLCC TackItOn Rapid XPages Development using Application Layout and Dojo UI Controls One full day with TLCC’s expert instructors TLCC’s Rapid XPages Development course A year of continued instructor support All for only $499 www.tlcc.com/iconuktackiton or www.tlcc.com/mwlug MWLug in Indianapolis August 21st to 23rd www.mwlug.com 4 Upcoming Events
  • 11. © 2013 The Learning Continuum Company, Ltd – This material can not be reproduced or distributed without the express permission of TLCC Asking Questions 5 Q & A at the end! Type in your questions as they come up
  • 12. © 2013 The Learning Continuum Company, Ltd – This material can not be reproduced or distributed without the express permission of TLCC Your Presenters Today: 6 #XPages Mike McGarel @mmcgarel www.bleedyellow.com/blogs/McGarelGramming Paul Withers, IBM Champion @PaulSWithers www.intec.co.uk/blog
  • 13. 2 © 2013 IBM Corporation Agenda  Introduction  The Twelve Tasks  Bonus  Summary
  • 14. 3 © 2013 IBM Corporation Mike McGarel  Working with web technologies for over 13 years  Working with Notes/Domino since version 4.6  Corporate developer  Site developer for MWLUG and SkiLUG
  • 15. 4 © 2013 IBM Corporation Paul Withers  IBM Champion 2011-2012, 2013  Co-Host The XCast  Co-Author XPages Extension Library
  • 16. 5 © 2013 IBM Corporation Why This Session?  XPages is renowned for: ● faster web development ● modern Web 2.0 user interface ● pre-built controls ● UI can be separated from business logic ● greater flexibility of development interface ● gateway to JavaTM ● extensibility of development platform  But what's in it for you?
  • 17. 6 © 2013 IBM Corporation Agenda  Introduction  The Twelve Tasks  Bonus  Summary
  • 18. 7 © 2013 IBM Corporation Hercules  Most popular classical Greco-Roman hero  Hercules is Latinized form (Heracles or Herakles in Greek)  Son of Zeus and the Alcmene (a mortal)  Originally called Alcaeus. Herakles means “famed because of Hera” (Hera-kleos)  Given “12 Labours” as punishment Image by Bayreuth2009 (Own work) [CC-BY-3.0 (http://creativecommons.org/licenses/by/3.0)], via Wikimedia Commons
  • 19. 8 © 2013 IBM Corporation First Labour: Nemean Lion
  • 20. 9 © 2013 IBM Corporation Themes  Contain resources for entire application, for example: ● style sheets ● JavaScript files  Can inherit from other themes  Help to standardize user interface (UI)
  • 21. 10 © 2013 IBM Corporation Benefits Over Classic Notes/Domino  Easier to build consistent interfaces and business logic  Single source of control  Fewer inline styles means less code  GOTCHA – cannot set properties required prior to rendering ● e.g. value property for a repeat control  GOTCHA – can only override runtime bindings ● i.e. #{javascript:...} only, not ${javascript:...}
  • 22. 11 © 2013 IBM Corporation Sample Theme Code <theme extends="oneuiv2.1_gold"> <resource> <content-type>text/css</content-type> <href>corporate.css</href> </resource> <control override=”true”> <name>Button.Submit</name> <property> <name>style</name> <value>background-color: #0000FF; color: #FFF;</value> </property> </control> </theme>
  • 23. 12 © 2013 IBM Corporation Themes
  • 24. 13 © 2013 IBM Corporation Second Labour: Lernean Hydra
  • 25. 14 © 2013 IBM Corporation Repeat Controls  Set datasource ● dominoView ● NotesDocumentCollection ● NotesViewEntryCollection ● Multi-value field ● JavaScript array ● Java collection  Set number of iterations  Set “var” and create template for a single iteration ● Compute rendered property for flexibility
  • 26. 15 © 2013 IBM Corporation Benefits Over Classic Notes/Domino  Easier than outputting HTML with @Transform, more flexible than HTML in view columns  Drag and drop to build up a complex layout  Easier to build and debug than a LotusScript agent  Allows greater flexibility for data model  Pagination can easily be added  GOTCHA – nothing shows if content is a single string
  • 27. 16 © 2013 IBM Corporation Repeat Controls
  • 28. 17 © 2013 IBM Corporation Third Labour – Ceryneian Hind
  • 29. 18 © 2013 IBM Corporation In View Edit
  • 30. 19 © 2013 IBM Corporation In View Edit  Build “view” as normal  Add link / button to edit a row, pass UNID / NoteID to scoped variable and refresh  Render read only version if UNID / NoteID is not for this document  Render editable version if UNID / NoteID is for this document  Look at In Place Form in Extension Library
  • 31. 20 © 2013 IBM Corporation Benefits Over Classic Notes/Domino  Web 2.0 style editing for small documents  Less code than InViewEdit in Notes Client  Easier than classic web (lots of AJAX, iFrames, JavaScript)  With Repeat Controls, View Panels etc. quick to implement  GOTCHA – NotesXspViewEntry cannot be edited. Use the NotesDocument  GOTCHA – for new documents set scope to request where possible ● Otherwise second edit updates the same NotesDocument
  • 32. 21 © 2013 IBM Corporation Fourth Labour – Erymanthian Boar
  • 33. 22 © 2013 IBM Corporation Design Properties
  • 34. 23 © 2013 IBM Corporation Benefits Over Classic Notes/Domino  All Properties panel on any control  Copy and paste in Source pane  Any property can be computed, for maximum flexibility ● Avoids code duplication ● Use dataContexts for further avoidance of code duplication  GOTCHA – for eventHandler properties, need to use Outline / Source
  • 35. 24 © 2013 IBM Corporation Fifth Labour: The Auguean Stables
  • 36. 25 © 2013 IBM Corporation AJAX Partial Page Refresh  Implemented with a single tick and selecting partial refresh ID  “Changes” managed in design of XPage ● Rendered properties ● Computed properties ● Data definitions  Minimal additional coding required  For additional functionality, look at eventHandler properties – onStart, onError, onComplete, execMode, execId
  • 37. 26 © 2013 IBM Corporation Benefits Over Classic Notes/Domino  Classical Domino would need a form with passthru HTML (div and button) and JavaScript for an Ajax refresh.  An alternate would be to call a LotusScript agent  Notes Client has no partial refresh option ● NotesUIDocument methods can change specific components  GOTCHA – validation triggers, be aware of JSF lifecycle ● Know what is sent to server, what runs on server, what is sent back
  • 38. 27 © 2013 IBM Corporation Ajax Partial Page Refresh
  • 39. 28 © 2013 IBM Corporation Sixth Labour: Stymphalian Birds
  • 40. 29 © 2013 IBM Corporation Pager Controls  Many standard options and easily customizable ● Show page number easily with Page {0} of {1} ● Can allow users to select number of items per page ● Can calculate link to last page (starting with version 8.5.2) ● Pager Add Rows control ● Pager Save State control (easily returns to same page)  Built into ● View Panels ● Repeat Controls ● Data Tables ● Dynamic View Panel (Extension Library) ● Data View (Extension Library) ● iNotes ListView (Extension Library)
  • 41. 30 © 2013 IBM Corporation Benefits Over Classic Notes/Domino  Traditional Domino web has nothing out of the box  Better user experience  More flexibility for developers
  • 42. 31 © 2013 IBM Corporation Pager Controls
  • 43. 32 © 2013 IBM Corporation Seventh Labour: The Cretan Bull
  • 44. 33 © 2013 IBM Corporation TODOs  Eclipse editors allow managing of TODOs  Window > Show Eclipse Views: Tasks  Also can add FIXME or any other tag  XPages, Custom Controls, Themes integrate ● SSJS Script Libraries not supported ● Style Sheets not supported ● Java classes supported  No easy way of doing this in traditional Notes / Domino
  • 45. 34 © 2013 IBM Corporation Enabling TODOs
  • 46. 35 © 2013 IBM Corporation TODOs
  • 47. 36 © 2013 IBM Corporation Eighth Labour: The Horses of Diomedes
  • 48. 37 © 2013 IBM Corporation Labour 8.5.x: Rescue of Alcestis
  • 49. 38 © 2013 IBM Corporation Rescue Your Code From The Dead With Local History  Eclipse-based functionality  Restore From > Local History  Compare With > Local History
  • 50. 39 © 2013 IBM Corporation Rescue Your Code With Source Control Management (SCM)  Via plug-in on OpenNTF.org with Domino Designer 8.5.2  Built into Domino Designer 8.5.3  Your choice of Eclipse-based source control system ● Git ● Mercurial ● SVN
  • 51. 40 © 2013 IBM Corporation Benefits Over Classic Notes/Domino  Only available via third-party products  Third-party tools may offer alternative functionality  GOTCHA – local history specific to PC  GOTCHA – be careful with round-tripping of DXL for traditional Notes Client design elements
  • 52. 41 © 2013 IBM Corporation Rescue Code From The Dead
  • 53. 42 © 2013 IBM Corporation Ninth Labour: The Belt of Hippolyte
  • 54. 43 © 2013 IBM Corporation Custom Controls  Reusable within the same XPage  Custom properties can control instances of the control  Keep design clean by using Design Definition  Use Editable Areas as placeholder for content within the Custom Control
  • 55. 44 © 2013 IBM Corporation Benefits Over Classic Notes/Domino  More powerful than subforms  Can contain other custom controls  Properties are defined on Custom Control ● Cleaner design ● Easier to support
  • 56. 45 © 2013 IBM Corporation Custom Controls
  • 57. 46 © 2013 IBM Corporation Custom Control Property Definition Example
  • 58. 47 © 2013 IBM Corporation Using The Custom Control Property Definition <xp:div id="divButtons" styleClass="divButtons" style="#{javascript:compositeData.controlStyles}"> . . . </xp:div>
  • 59. 48 © 2013 IBM Corporation Tenth Labour: Geryon's Cattle
  • 60. 49 © 2013 IBM Corporation Joining Views and Multiple Datasources  Merge content from multiple documents in a single view  Merge content from multiple databases  Display and edit multiple documents on one XPage
  • 61. 50 © 2013 IBM Corporation Benefits Over Classic Notes/Domino  Minimize data stored on NotesDocuments  Minimize views within the database  More flexible reporting  Better user-experience  Build up complex layouts section by section  GOTCHA – use ignoreRequestParams for secondary NotesDocuments
  • 62. 51 © 2013 IBM Corporation Joining Views
  • 63. 52 © 2013 IBM Corporation Eleventh Labour: Apples of The Hesperides
  • 64. 53 © 2013 IBM Corporation Display data on Mobile devices  XPages can be displayed without any amendments on mobile devices  Use responsive design for resolution-specific layout  Use Extension Library mobile components for tailored content ● New redirect control available  Third-party products for leveraging XPages skills for offline development
  • 65. 54 © 2013 IBM Corporation Benefits Over Classic Notes/Domino  Leverage existing skills  Pre-built controls with OS-specific look and feel  Access data sources as within normal XPages  GOTCHA – connectivity is not necessarily the same as desktop browser  GOTCHA – use reloadContent property judiciously  GOTCHA – slide transitions only available within single XPage
  • 66. 55 © 2013 IBM Corporation Twelfth Labour: Cerberus
  • 67. 56 © 2013 IBM Corporation Inspecting Tools  Debug Toolbar ● Displays variables and values ● Allows you to easily set timers ● In-built API inspector to test code ● Message logging ● http://www.openntf.org/internal/home.nsf/project.xsp? action=openDocument&name=XPage%20Debug%20Toolbar  XPages Log File Reader ● View console ● View logs ● http://www.openntf.org/internal/home.nsf/project.xsp? action=openDocument&name=XPages%20Log%20File%20Reader
  • 68. 57 © 2013 IBM Corporation Inspecting Tools  XPages Toolbox ● CPU Profiler ● Runtime monitoring ● Session dumps ● And more... ● http://www.openntf.org/internal/home.nsf/project.xsp? action=openDocument&name=XPages%20Toolbox  Server-Side JavaScript Debugging*  Java Debugging* *Useful session: Debug Server Side Javascript, Java, and XPages Apps Using the SSJS Debugger (AD202)
  • 69. 58 © 2013 IBM Corporation Benefits Over Classic Notes/Domino  LotusScript debugger, but nothing easy for formula language  No easy debugging for traditional Domino web
  • 70. 59 © 2013 IBM Corporation Agenda  Introduction  The Twelve Tasks  Bonus  Summary
  • 71. 60 © 2013 IBM Corporation XPages and Social – With XPages You're Not Alone  Community blog posts, books, user groups  OpenNTF (http://openntf.org) resources ● Sample Applications ● Custom Controls ● XSnippets (http://openntf.org/XSnippets.nsf/home.xsp) ● OSGi plugins ● Libraries to extend Domino Designer ● OpenNTF Webinars (http://webinars.openntf.org)  Import and Export for Domino Designer Plugin ● Easily import resources from OpenNTF ● Easily export to file system or package for OpenNTF
  • 72. 61 © 2013 IBM Corporation XPages and Social – With XPages You're Not Alone  Social controls in Extension Library for easy integration with ● IBM Connections ● Sametime ● Twitter ● Facebook ● Dropbox  Social Plugins ● Like a single control to start a Sametime chat with any editor of the current document
  • 73. 62 © 2013 IBM Corporation Agenda  Introduction  The Twelve Tasks  Bonus  Summary
  • 74. 63 © 2013 IBM Corporation Summary  Twelve examples of areas where XPages is ● Quicker ● Easier ● More flexible ● Extensible ● Build reusable skills within or beyond Domino ● The learning curve is worth it!
  • 75. 64 © 2013 IBM Corporation XPages Resources  XPages.Info (http://xpages.info)  XPages Forum (http://www-10.lotus.com/ldd/xpagesforum.nsf)  Notes/Domino Application Development Wiki (http://www-10.lotus.com/ldd/ddwiki.nsf)  YouAtNotes XPages wiki (http://www.xpageswiki.com)  Notes in 9 (http://www.notesin9.com)  Stack Overflow (http://stackoverflow.com/questions/tagged/xpages)  Mastering XPages (IBM Press)  XPages Extension Library (IBM Press)  XPages Portable Command Guide (IBM Press)
  • 76. 65 © 2013 IBM Corporation References (Classical Mythology / Greek Literature)  Timeless Myths (http://www.timelessmyths.com)  Family tree of descendants of Perseus, including Hercules (http://timelessmyths.com/classical/family3c.html)  Theoi Greek Mythology (http://www.theoi.com)  Jason & Medea (http://jasonmedea.net)  Euripides, Heracles – covers Hercules killing his wife Megara  Euripides, Alcestis – covers Hercules rescue of Alcestis  Sophocles, Women of Trachis (Trachiniae) – covers Hercules' death  Seneca, Hercules Furens – Roman tragedy, covers Hercules killing his wife Megara  Hercules' life also covered in works of Ovid (Metamorphoses), Apollodorus, Diodorus Siculus, Hesiod (The Shield of Herakles), Hyginus
  • 77. 66 © 2013 IBM Corporation References (Popular Culture)  “Hercules” (Disney animated movie 1997)  “Hercules: The Legendary Journeys” (TV show 1995 – 1999)  “The Three Stooges Meet Hercules” (Movie 1962)  “Jason and The Argonauts” (Movie 1963)  Countless other movies, TV shows, comic books, and video games
  • 78. 67 © 2013 IBM Corporation Other Related Connect 2013 Sessions  Debug Server Side Javascript, Java, and XPages Apps Using the SSJS Debugger (AD202)  IBM Domino Designer: Tips and Tricks for Maximum Productivity (AD203)  How To Develop Great Applications Using XPages Design Patterns (AD204)  Successfully Delivering XPages Projects - All Things Considered (AD205)  IBM Lotus Domino XPages: Embrace, Extend, Integrate (AD206)  IBM Lotus Domino XPages: Beyond Domino Documents and Views (AD207)  IBM Lotus Domino XPages Performance in a Nutshell (AD208)  jQuery: The World's Most Popular JavaScript Library Comes to XPages (BP103)  Deploying and Managing IBM Lotus Domino XPages Applications (BP201)  XPages Development: Modernize Yourself! (BP202)  Custom Controls: Powerful, But Not Rocket Science! (BP205)  Meet the Java Application Server You Already Own - IBM Domino (BP207)  XPages Blast (BP208)  In The Land of Social Apps, the API is King (BP209)
  • 79. 68 © 2013 IBM Corporation Other Related Connect 2013 Sessions (continued)  Using a Mobile Approach: Strategies for Mobilizing Your IBM Domino Applications (BP210)  Lessons Learned from the World's Largest XPage Project (BP211)  Apps, Apps, and More Apps: Meet the Very Best Open Source Apps from OpenNTF (BP212)  XPages Jumpstart (JMP101)  Extending Your App Arsenal With OpenSocial (JMP102)  Get the “Jump” on Mobilizing Your IBM Notes and Domino Applications Today! (JMP103)  Master Class: XPages Performance - Inside Out (JMP401)  Master Class: Managed Beans and XPages: Your Time Is Now (JMP402)  Master Class: Reverse Engineering Notes Applications: Separating Truth from Fiction (JMP403)  Buried Treasure: Finding the Hidden Gold in Lotus Notes Data (SHOW104)  XPages: No Experience Needed (SHOW111)  Building Your First Mobile Application Using XPages (SHOW112)
  • 80. 69 © 2013 IBM Corporation “It's Better with XPages” Index 1. Themes 2. Repeat Controls 3. In View Edit 4. Design Properties 5. AJAX Partial Page Refresh 6. Pager Controls 7. TODOs 8. Local History / Source Control Management 9. Custom Controls 10. Joining Views 11. Mobile 12. Inspecting Tools
  • 81. 70 © 2013 IBM Corporation Questions Paul Withers ICS Consultant Intec Systems Ltd pwithers@intec.co.uk www.twitter.com/paulswithers http://www.intec.co.uk/blog Mike McGarel Collaborative Solutions Developer Czarnowski Display Services Inc mcgarelgramming@gmail.com www.twitter.com/mmcgarel www.bleedyellow.com/blogs/ McGarelGramming
  • 82. © 2013 The Learning Continuum Company, Ltd – This material can not be reproduced or distributed without the express permission of TLCC Questions???? 7 Use the Q&A pane in WebEx to ask questions We will answer your questions verbally
  • 83. © 2013 The Learning Continuum Company, Ltd – This material can not be reproduced or distributed without the express permission of TLCC Question and Answer Time! 8 Teamstudio Questions? contactus@teamstudio.com 877-228-6178 TLCC Questions? howardg@tlcc.com paul@tlcc.com 888-241-8522 or 561-953-0095 Mike McGarel Paul Della-NebbiaHoward GreenbergPaul Withers Upcoming Events: TLCC Spring Sale MW LUG in Indianapolis •TLCC TackItOn the day before ICON UK in Brighton •TLCC TackItOn the day after #XPages @mmcgarel @paulswithers @PaulDN @TLCCLtd @Teamstudio Taline Badrikian