SlideShare a Scribd company logo
BP206 It's Not Herculean: Twelve
                         Tasks Made Easier with IBMยฎ Lotus
                                ยฎ
                         Domino XPages
                         Mike McGarel | Collaborative Solutions Developer
                                        Czarnowski Display Services Inc
                         Paul Withers | IBM Collaboration Solutions Consultant
                                        Intec Systems Ltd




ยฉ 2013 IBM Corporation
Agenda

๎€Š   Introduction
๎€Š   The Twelve Tasks
๎€Š   Bonus
๎€Š   Summary




2   ยฉ 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




3   ยฉ 2013 IBM Corporation
Paul Withers

๎€Š   IBM Champion 2011-2012, 2013

๎€Š   Co-Host The XCast

๎€Š   Co-Author XPages Extension Library




4   ยฉ 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?




5    ยฉ 2013 IBM Corporation
Agenda

๎€Š   Introduction
๎€Š   The Twelve Tasks
๎€Š   Bonus
๎€Š   Summary




6   ยฉ 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



7        ยฉ 2013 IBM Corporation
First Labour: Nemean Lion




8   ยฉ 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)




9   ยฉ 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:...}




10   ยฉ 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>

 ๎€Š
11   ยฉ 2013 IBM Corporation
Benefits Over Classic Notes/Domino

 ๎€Š   More consistent interfaces

 ๎€Š   Single source for controlling formatting

 ๎€Š   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:...}




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
Displaying on Mobile




56   ยฉ 2013 IBM Corporation
Twelfth Labour: Cerberus




57   ยฉ 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




58   ยฉ 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) Wednesday 4:15pm - 5:15pm

59   ยฉ 2013 IBM Corporation
Benefits Over Classic Notes/Domino

 ๎€Š   LotusScript debugger, but nothing easy for formula language

 ๎€Š   No easy debugging for traditional Domino web




60   ยฉ 2013 IBM Corporation
Agenda

 ๎€Š   Introduction
 ๎€Š   The Twelve Tasks
 ๎€Š   Bonus
 ๎€Š   Summary




61   ยฉ 2013 IBM Corporation
XPages and Social โ€“ With XPages You're Not Alone

 ๎€Š   Community blog posts, books

 ๎€Š   OpenNTF (http://openntf.org) resources
      โ—      Sample Applications
      โ—      Custom Controls
      โ—      XSnippets (http://openntf.org/XSnippets.nsf/home.xsp)
      โ—      OSGi plugins
      โ—      Libraries to extend Domino Designer


 ๎€Š   Import and Export for Domino Designer Plugin
      โ—      Easily import resources from OpenNTF
      โ—      Easily export to file system or package for OpenNTF




62   ยฉ 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




63    ยฉ 2013 IBM Corporation
Agenda

 ๎€Š   Introduction
 ๎€Š   The Twelve Tasks
 ๎€Š   Bonus
 ๎€Š   Summary




64   ยฉ 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!




65   ยฉ 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)




66   ยฉ 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



67   ยฉ 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




68   ยฉ 2013 IBM Corporation
Other Related 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)
 ๎€Š




69    ยฉ 2013 IBM Corporation
Other Related 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)




70    ยฉ 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


71     ยฉ 2013 IBM Corporation
Questions and Evaluations




     Paul Withers                   Mike McGarel
     ICS Consultant                 Collaborative Solutions Developer
     Intec Systems Ltd              Czarnowski Display Services Inc
     pwithers@intec.co.uk           mcgarelgramming@gmail.com
     www.twitter.com/paulswithers   www.twitter.com/mmcgarel
     http://www.intec.co.uk/blog    www.bleedyellow.com/blogs/
                                        McGarelGramming



72   ยฉ 2013 IBM Corporation
Legal disclaimer

     ยฉ IBM Corporation 2013. All Rights Reserved.
      The information contained in this publication is provided for informational purposes only. While efforts were made to
      verify the completeness and accuracy of the information contained in this publication, it is provided AS IS without
      warranty of any kind, express or implied. In addition, this information is based on IBMโ€™s current product plans and
      strategy, which are subject to change by IBM without notice. IBM shall not be responsible for any damages arising
      out of the use of, or otherwise related to, this publication or any other materials. Nothing contained in this
      publication is intended to, nor shall have the effect of, creating any warranties or representations from IBM or its
      suppliers or licensors, or altering the terms and conditions of the applicable license agreement governing the use of
      IBM software.
      References in this presentation to IBM products, programs, or services do not imply that they will be available in all
      countries in which IBM operates. Product release dates and/or capabilities referenced in this presentation may
      change at any time at IBMโ€™s sole discretion based on market opportunities or other factors, and are not intended to
      be a commitment to future product or feature availability in any way. Nothing contained in these materials is
      intended to, nor shall have the effect of, stating or implying that any activities undertaken by you will result in any
      specific sales, revenue growth or other results.
      Java and all Java-based trademarks are trademarks of Sun Microsystems, Inc. in the United States, other
      countries, or both.
      All references refer to fictitious companies and persons and are used for illustration purposes only.




73      ยฉ 2013 IBM Corporation
Ad

More Related Content

What's hot (12)

The Internal Architecture of Chrome Developer Tools
The Internal Architecture of Chrome Developer ToolsThe Internal Architecture of Chrome Developer Tools
The Internal Architecture of Chrome Developer Tools
Miroslav Bajtoลก
ย 
What is new in Notes & Domino Deleopment V10.x
What is new in Notes & Domino Deleopment V10.xWhat is new in Notes & Domino Deleopment V10.x
What is new in Notes & Domino Deleopment V10.x
Ulrich Krause
ย 
WebKit and Blink: Bridging the Gap Between the Kernel and the HTML5 Revolution
WebKit and Blink: Bridging the Gap Between the Kernel and the HTML5 RevolutionWebKit and Blink: Bridging the Gap Between the Kernel and the HTML5 Revolution
WebKit and Blink: Bridging the Gap Between the Kernel and the HTML5 Revolution
juanjosanchezpenas
ย 
WebKit and Blink: open development powering the HTML5 revolution
WebKit and Blink: open development powering the HTML5 revolutionWebKit and Blink: open development powering the HTML5 revolution
WebKit and Blink: open development powering the HTML5 revolution
juanjosanchezpenas
ย 
CreateHTTPRequestPipelineASPNetCore
CreateHTTPRequestPipelineASPNetCoreCreateHTTPRequestPipelineASPNetCore
CreateHTTPRequestPipelineASPNetCore
Neal Pandey
ย 
Visual Studio.NET
Visual Studio.NETVisual Studio.NET
Visual Studio.NET
salonityagi
ย 
Ad108 - XPages in the IBM Lotus Notes Client - A Deep Dive!
Ad108 - XPages in the IBM Lotus Notes Client - A Deep Dive!Ad108 - XPages in the IBM Lotus Notes Client - A Deep Dive!
Ad108 - XPages in the IBM Lotus Notes Client - A Deep Dive!
ddrschiw
ย 
HTTP Potpourri
HTTP PotpourriHTTP Potpourri
HTTP Potpourri
Kevin Hakanson
ย 
Gwt 2,3 Deep dive
Gwt 2,3 Deep diveGwt 2,3 Deep dive
Gwt 2,3 Deep dive
Return on Intelligence
ย 
B14870 solution final
B14870 solution finalB14870 solution final
B14870 solution final
ssuser8f0495
ย 
Titanium appcelerator my first app
Titanium appcelerator my first appTitanium appcelerator my first app
Titanium appcelerator my first app
Alessio Ricco
ย 
The WebView Role in Hybrid Applications
The WebView Role in Hybrid ApplicationsThe WebView Role in Hybrid Applications
The WebView Role in Hybrid Applications
Haim Michael
ย 
The Internal Architecture of Chrome Developer Tools
The Internal Architecture of Chrome Developer ToolsThe Internal Architecture of Chrome Developer Tools
The Internal Architecture of Chrome Developer Tools
Miroslav Bajtoลก
ย 
What is new in Notes & Domino Deleopment V10.x
What is new in Notes & Domino Deleopment V10.xWhat is new in Notes & Domino Deleopment V10.x
What is new in Notes & Domino Deleopment V10.x
Ulrich Krause
ย 
WebKit and Blink: Bridging the Gap Between the Kernel and the HTML5 Revolution
WebKit and Blink: Bridging the Gap Between the Kernel and the HTML5 RevolutionWebKit and Blink: Bridging the Gap Between the Kernel and the HTML5 Revolution
WebKit and Blink: Bridging the Gap Between the Kernel and the HTML5 Revolution
juanjosanchezpenas
ย 
WebKit and Blink: open development powering the HTML5 revolution
WebKit and Blink: open development powering the HTML5 revolutionWebKit and Blink: open development powering the HTML5 revolution
WebKit and Blink: open development powering the HTML5 revolution
juanjosanchezpenas
ย 
CreateHTTPRequestPipelineASPNetCore
CreateHTTPRequestPipelineASPNetCoreCreateHTTPRequestPipelineASPNetCore
CreateHTTPRequestPipelineASPNetCore
Neal Pandey
ย 
Visual Studio.NET
Visual Studio.NETVisual Studio.NET
Visual Studio.NET
salonityagi
ย 
Ad108 - XPages in the IBM Lotus Notes Client - A Deep Dive!
Ad108 - XPages in the IBM Lotus Notes Client - A Deep Dive!Ad108 - XPages in the IBM Lotus Notes Client - A Deep Dive!
Ad108 - XPages in the IBM Lotus Notes Client - A Deep Dive!
ddrschiw
ย 
HTTP Potpourri
HTTP PotpourriHTTP Potpourri
HTTP Potpourri
Kevin Hakanson
ย 
B14870 solution final
B14870 solution finalB14870 solution final
B14870 solution final
ssuser8f0495
ย 
Titanium appcelerator my first app
Titanium appcelerator my first appTitanium appcelerator my first app
Titanium appcelerator my first app
Alessio Ricco
ย 
The WebView Role in Hybrid Applications
The WebView Role in Hybrid ApplicationsThe WebView Role in Hybrid Applications
The WebView Role in Hybrid Applications
Haim Michael
ย 

Similar to BP206 It's Not Herculean: 12 Tasks Made Easier with IBM Domino XPages (20)

Twelve Tasks Made Easier with IBM Domino XPages
Twelve Tasks Made Easier with IBM Domino XPagesTwelve Tasks Made Easier with IBM Domino XPages
Twelve Tasks Made Easier with IBM Domino XPages
Teamstudio
ย 
What's new in designer
What's new in designerWhat's new in designer
What's new in designer
Raj J (Rajendran)
ย 
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
Rahul A. Garg
ย 
XPages Blast - Lotusphere 2012
XPages Blast - Lotusphere 2012XPages Blast - Lotusphere 2012
XPages Blast - Lotusphere 2012
Tim Clark
ย 
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
ย 
AD109 - Using the IBM Sametime Proxy SDK: WebSphere Portal, IBM Connections -...
AD109 - Using the IBM Sametime Proxy SDK: WebSphere Portal, IBM Connections -...AD109 - Using the IBM Sametime Proxy SDK: WebSphere Portal, IBM Connections -...
AD109 - Using the IBM Sametime Proxy SDK: WebSphere Portal, IBM Connections -...
Carl Tyler
ย 
AD106 - IBM Lotus Domino XPages anywhere - Write them once, See them Everywhere
AD106 - IBM Lotus Domino XPages anywhere - Write them once, See them EverywhereAD106 - IBM Lotus Domino XPages anywhere - Write them once, See them Everywhere
AD106 - IBM Lotus Domino XPages anywhere - Write them once, See them Everywhere
Stephan H. Wissel
ย 
Rit 8.5.0 platform training slides
Rit 8.5.0 platform training slidesRit 8.5.0 platform training slides
Rit 8.5.0 platform training slides
Darrel Rader
ย 
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
Ranjit Rai
ย 
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
We4IT Group
ย 
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
ย 
Id101 what's new in ibm lotusยฎ dominoยฎ 8.5.3 and beyond final
Id101 what's new in ibm lotusยฎ dominoยฎ 8.5.3 and beyond finalId101 what's new in ibm lotusยฎ dominoยฎ 8.5.3 and beyond final
Id101 what's new in ibm lotusยฎ dominoยฎ 8.5.3 and beyond final
Saurabh Calla
ย 
We4IT LCTY 2013 - x-pages-men - ibm domino xpages - performance in a nutshell
We4IT LCTY 2013 - x-pages-men - ibm domino xpages - performance in a nutshellWe4IT LCTY 2013 - x-pages-men - ibm domino xpages - performance in a nutshell
We4IT LCTY 2013 - x-pages-men - ibm domino xpages - performance in a nutshell
We4IT Group
ย 
Learn everything about IBM iNotes Customization
Learn everything about IBM iNotes CustomizationLearn everything about IBM iNotes Customization
Learn everything about IBM iNotes Customization
IBM Connections Developers
ย 
Code One 2018 maven
Code One 2018   mavenCode One 2018   maven
Code One 2018 maven
Massimiliano Dessรฌ
ย 
Ad107 - Enhance Your Existing Applications with XPages
Ad107 - Enhance Your Existing Applications with XPagesAd107 - Enhance Your Existing Applications with XPages
Ad107 - Enhance Your Existing Applications with XPages
ddrschiw
ย 
Connect2013 id506 hadr ideas for social business
Connect2013 id506 hadr ideas for social businessConnect2013 id506 hadr ideas for social business
Connect2013 id506 hadr ideas for social business
Luis Guirigay
ย 
The Power of Simple: Whats New in BMC Control-M 8
The Power of Simple: Whats New in BMC Control-M 8The Power of Simple: Whats New in BMC Control-M 8
The Power of Simple: Whats New in BMC Control-M 8
BMC Software
ย 
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
IBM Connections Developers
ย 
Aem hub oak 0.2 full
Aem hub oak 0.2 fullAem hub oak 0.2 full
Aem hub oak 0.2 full
Michael Marth
ย 
Twelve Tasks Made Easier with IBM Domino XPages
Twelve Tasks Made Easier with IBM Domino XPagesTwelve Tasks Made Easier with IBM Domino XPages
Twelve Tasks Made Easier with IBM Domino XPages
Teamstudio
ย 
What's new in designer
What's new in designerWhat's new in designer
What's new in designer
Raj J (Rajendran)
ย 
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
Rahul A. Garg
ย 
XPages Blast - Lotusphere 2012
XPages Blast - Lotusphere 2012XPages Blast - Lotusphere 2012
XPages Blast - Lotusphere 2012
Tim Clark
ย 
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
ย 
AD109 - Using the IBM Sametime Proxy SDK: WebSphere Portal, IBM Connections -...
AD109 - Using the IBM Sametime Proxy SDK: WebSphere Portal, IBM Connections -...AD109 - Using the IBM Sametime Proxy SDK: WebSphere Portal, IBM Connections -...
AD109 - Using the IBM Sametime Proxy SDK: WebSphere Portal, IBM Connections -...
Carl Tyler
ย 
AD106 - IBM Lotus Domino XPages anywhere - Write them once, See them Everywhere
AD106 - IBM Lotus Domino XPages anywhere - Write them once, See them EverywhereAD106 - IBM Lotus Domino XPages anywhere - Write them once, See them Everywhere
AD106 - IBM Lotus Domino XPages anywhere - Write them once, See them Everywhere
Stephan H. Wissel
ย 
Rit 8.5.0 platform training slides
Rit 8.5.0 platform training slidesRit 8.5.0 platform training slides
Rit 8.5.0 platform training slides
Darrel Rader
ย 
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
Ranjit Rai
ย 
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
We4IT Group
ย 
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
ย 
Id101 what's new in ibm lotusยฎ dominoยฎ 8.5.3 and beyond final
Id101 what's new in ibm lotusยฎ dominoยฎ 8.5.3 and beyond finalId101 what's new in ibm lotusยฎ dominoยฎ 8.5.3 and beyond final
Id101 what's new in ibm lotusยฎ dominoยฎ 8.5.3 and beyond final
Saurabh Calla
ย 
We4IT LCTY 2013 - x-pages-men - ibm domino xpages - performance in a nutshell
We4IT LCTY 2013 - x-pages-men - ibm domino xpages - performance in a nutshellWe4IT LCTY 2013 - x-pages-men - ibm domino xpages - performance in a nutshell
We4IT LCTY 2013 - x-pages-men - ibm domino xpages - performance in a nutshell
We4IT Group
ย 
Learn everything about IBM iNotes Customization
Learn everything about IBM iNotes CustomizationLearn everything about IBM iNotes Customization
Learn everything about IBM iNotes Customization
IBM Connections Developers
ย 
Ad107 - Enhance Your Existing Applications with XPages
Ad107 - Enhance Your Existing Applications with XPagesAd107 - Enhance Your Existing Applications with XPages
Ad107 - Enhance Your Existing Applications with XPages
ddrschiw
ย 
Connect2013 id506 hadr ideas for social business
Connect2013 id506 hadr ideas for social businessConnect2013 id506 hadr ideas for social business
Connect2013 id506 hadr ideas for social business
Luis Guirigay
ย 
The Power of Simple: Whats New in BMC Control-M 8
The Power of Simple: Whats New in BMC Control-M 8The Power of Simple: Whats New in BMC Control-M 8
The Power of Simple: Whats New in BMC Control-M 8
BMC Software
ย 
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
IBM Connections Developers
ย 
Aem hub oak 0.2 full
Aem hub oak 0.2 fullAem hub oak 0.2 full
Aem hub oak 0.2 full
Michael Marth
ย 
Ad

More from Paul Withers (20)

Engage 2019: Introduction to Node-Red
Engage 2019: Introduction to Node-RedEngage 2019: Introduction to Node-Red
Engage 2019: Introduction to Node-Red
Paul Withers
ย 
Engage 2019: Modernising Your Domino and XPages Applications
Engage 2019: Modernising Your Domino and XPages Applications Engage 2019: Modernising Your Domino and XPages Applications
Engage 2019: Modernising Your Domino and XPages Applications
Paul Withers
ย 
Engage 2019: AI What Is It Good For
Engage 2019: AI What Is It Good ForEngage 2019: AI What Is It Good For
Engage 2019: AI What Is It Good For
Paul Withers
ย 
Social Connections 14 - ICS Integration with Node-RED and Open Source
Social Connections 14 - ICS Integration with Node-RED and Open SourceSocial Connections 14 - ICS Integration with Node-RED and Open Source
Social Connections 14 - ICS Integration with Node-RED and Open Source
Paul Withers
ย 
ICONUK 2018 - Do You Wanna Build a Chatbot
ICONUK 2018 - Do You Wanna Build a ChatbotICONUK 2018 - Do You Wanna Build a Chatbot
ICONUK 2018 - Do You Wanna Build a Chatbot
Paul Withers
ย 
IBM Think Session 8598 Domino and JavaScript Development MasterClass
IBM Think Session 8598 Domino and JavaScript Development MasterClassIBM Think Session 8598 Domino and JavaScript Development MasterClass
IBM Think Session 8598 Domino and JavaScript Development MasterClass
Paul Withers
ย 
IBM Think Session 3249 Watson Work Services Java SDK
IBM Think Session 3249 Watson Work Services Java SDKIBM Think Session 3249 Watson Work Services Java SDK
IBM Think Session 3249 Watson Work Services Java SDK
Paul Withers
ย 
GraphQL 101
GraphQL 101GraphQL 101
GraphQL 101
Paul Withers
ย 
GraphQL 101
GraphQL 101GraphQL 101
GraphQL 101
Paul Withers
ย 
OpenNTF Domino API (ODA): Super-Charging Domino Development
OpenNTF Domino API (ODA): Super-Charging Domino DevelopmentOpenNTF Domino API (ODA): Super-Charging Domino Development
OpenNTF Domino API (ODA): Super-Charging Domino Development
Paul Withers
ย 
AD1279 "Marty, You're Not Thinking Fourth Dimensionally" - Troubleshooting XP...
AD1279 "Marty, You're Not Thinking Fourth Dimensionally" - Troubleshooting XP...AD1279 "Marty, You're Not Thinking Fourth Dimensionally" - Troubleshooting XP...
AD1279 "Marty, You're Not Thinking Fourth Dimensionally" - Troubleshooting XP...
Paul Withers
ย 
Social Connections 2015 CrossWorlds and Domino
Social Connections 2015 CrossWorlds and DominoSocial Connections 2015 CrossWorlds and Domino
Social Connections 2015 CrossWorlds and Domino
Paul Withers
ย 
ICON UK 2015 - ODA and CrossWorlds
ICON UK 2015 - ODA and CrossWorldsICON UK 2015 - ODA and CrossWorlds
ICON UK 2015 - ODA and CrossWorlds
Paul Withers
ย 
IBM ConnectED 2015 - BP106 From XPages Hero To OSGi Guru: Taking The Scary Ou...
IBM ConnectED 2015 - BP106 From XPages Hero To OSGi Guru: Taking The Scary Ou...IBM ConnectED 2015 - BP106 From XPages Hero To OSGi Guru: Taking The Scary Ou...
IBM ConnectED 2015 - BP106 From XPages Hero To OSGi Guru: Taking The Scary Ou...
Paul Withers
ย 
IBM ConnectED 2015 - MAS103 XPages Performance and Scalability
IBM ConnectED 2015 - MAS103 XPages Performance and ScalabilityIBM ConnectED 2015 - MAS103 XPages Performance and Scalability
IBM ConnectED 2015 - MAS103 XPages Performance and Scalability
Paul Withers
ย 
OpenNTF Domino API - Overview Introduction
OpenNTF Domino API - Overview IntroductionOpenNTF Domino API - Overview Introduction
OpenNTF Domino API - Overview Introduction
Paul Withers
ย 
What's New and Next in OpenNTF Domino API (ICON UK 2014)
What's New and Next in OpenNTF Domino API (ICON UK 2014)What's New and Next in OpenNTF Domino API (ICON UK 2014)
What's New and Next in OpenNTF Domino API (ICON UK 2014)
Paul Withers
ย 
From XPages Hero to OSGi Guru: Taking the Scary out of Building Extension Lib...
From XPages Hero to OSGi Guru: Taking the Scary out of Building Extension Lib...From XPages Hero to OSGi Guru: Taking the Scary out of Building Extension Lib...
From XPages Hero to OSGi Guru: Taking the Scary out of Building Extension Lib...
Paul Withers
ย 
Engage 2014 OpenNTF Domino API Slides
Engage 2014 OpenNTF Domino API SlidesEngage 2014 OpenNTF Domino API Slides
Engage 2014 OpenNTF Domino API Slides
Paul Withers
ย 
IBM Connect 2014 BP204: It's Not Infernal: Dante's Nine Circles of XPages Heaven
IBM Connect 2014 BP204: It's Not Infernal: Dante's Nine Circles of XPages HeavenIBM Connect 2014 BP204: It's Not Infernal: Dante's Nine Circles of XPages Heaven
IBM Connect 2014 BP204: It's Not Infernal: Dante's Nine Circles of XPages Heaven
Paul Withers
ย 
Engage 2019: Introduction to Node-Red
Engage 2019: Introduction to Node-RedEngage 2019: Introduction to Node-Red
Engage 2019: Introduction to Node-Red
Paul Withers
ย 
Engage 2019: Modernising Your Domino and XPages Applications
Engage 2019: Modernising Your Domino and XPages Applications Engage 2019: Modernising Your Domino and XPages Applications
Engage 2019: Modernising Your Domino and XPages Applications
Paul Withers
ย 
Engage 2019: AI What Is It Good For
Engage 2019: AI What Is It Good ForEngage 2019: AI What Is It Good For
Engage 2019: AI What Is It Good For
Paul Withers
ย 
Social Connections 14 - ICS Integration with Node-RED and Open Source
Social Connections 14 - ICS Integration with Node-RED and Open SourceSocial Connections 14 - ICS Integration with Node-RED and Open Source
Social Connections 14 - ICS Integration with Node-RED and Open Source
Paul Withers
ย 
ICONUK 2018 - Do You Wanna Build a Chatbot
ICONUK 2018 - Do You Wanna Build a ChatbotICONUK 2018 - Do You Wanna Build a Chatbot
ICONUK 2018 - Do You Wanna Build a Chatbot
Paul Withers
ย 
IBM Think Session 8598 Domino and JavaScript Development MasterClass
IBM Think Session 8598 Domino and JavaScript Development MasterClassIBM Think Session 8598 Domino and JavaScript Development MasterClass
IBM Think Session 8598 Domino and JavaScript Development MasterClass
Paul Withers
ย 
IBM Think Session 3249 Watson Work Services Java SDK
IBM Think Session 3249 Watson Work Services Java SDKIBM Think Session 3249 Watson Work Services Java SDK
IBM Think Session 3249 Watson Work Services Java SDK
Paul Withers
ย 
GraphQL 101
GraphQL 101GraphQL 101
GraphQL 101
Paul Withers
ย 
GraphQL 101
GraphQL 101GraphQL 101
GraphQL 101
Paul Withers
ย 
OpenNTF Domino API (ODA): Super-Charging Domino Development
OpenNTF Domino API (ODA): Super-Charging Domino DevelopmentOpenNTF Domino API (ODA): Super-Charging Domino Development
OpenNTF Domino API (ODA): Super-Charging Domino Development
Paul Withers
ย 
AD1279 "Marty, You're Not Thinking Fourth Dimensionally" - Troubleshooting XP...
AD1279 "Marty, You're Not Thinking Fourth Dimensionally" - Troubleshooting XP...AD1279 "Marty, You're Not Thinking Fourth Dimensionally" - Troubleshooting XP...
AD1279 "Marty, You're Not Thinking Fourth Dimensionally" - Troubleshooting XP...
Paul Withers
ย 
Social Connections 2015 CrossWorlds and Domino
Social Connections 2015 CrossWorlds and DominoSocial Connections 2015 CrossWorlds and Domino
Social Connections 2015 CrossWorlds and Domino
Paul Withers
ย 
ICON UK 2015 - ODA and CrossWorlds
ICON UK 2015 - ODA and CrossWorldsICON UK 2015 - ODA and CrossWorlds
ICON UK 2015 - ODA and CrossWorlds
Paul Withers
ย 
IBM ConnectED 2015 - BP106 From XPages Hero To OSGi Guru: Taking The Scary Ou...
IBM ConnectED 2015 - BP106 From XPages Hero To OSGi Guru: Taking The Scary Ou...IBM ConnectED 2015 - BP106 From XPages Hero To OSGi Guru: Taking The Scary Ou...
IBM ConnectED 2015 - BP106 From XPages Hero To OSGi Guru: Taking The Scary Ou...
Paul Withers
ย 
IBM ConnectED 2015 - MAS103 XPages Performance and Scalability
IBM ConnectED 2015 - MAS103 XPages Performance and ScalabilityIBM ConnectED 2015 - MAS103 XPages Performance and Scalability
IBM ConnectED 2015 - MAS103 XPages Performance and Scalability
Paul Withers
ย 
OpenNTF Domino API - Overview Introduction
OpenNTF Domino API - Overview IntroductionOpenNTF Domino API - Overview Introduction
OpenNTF Domino API - Overview Introduction
Paul Withers
ย 
What's New and Next in OpenNTF Domino API (ICON UK 2014)
What's New and Next in OpenNTF Domino API (ICON UK 2014)What's New and Next in OpenNTF Domino API (ICON UK 2014)
What's New and Next in OpenNTF Domino API (ICON UK 2014)
Paul Withers
ย 
From XPages Hero to OSGi Guru: Taking the Scary out of Building Extension Lib...
From XPages Hero to OSGi Guru: Taking the Scary out of Building Extension Lib...From XPages Hero to OSGi Guru: Taking the Scary out of Building Extension Lib...
From XPages Hero to OSGi Guru: Taking the Scary out of Building Extension Lib...
Paul Withers
ย 
Engage 2014 OpenNTF Domino API Slides
Engage 2014 OpenNTF Domino API SlidesEngage 2014 OpenNTF Domino API Slides
Engage 2014 OpenNTF Domino API Slides
Paul Withers
ย 
IBM Connect 2014 BP204: It's Not Infernal: Dante's Nine Circles of XPages Heaven
IBM Connect 2014 BP204: It's Not Infernal: Dante's Nine Circles of XPages HeavenIBM Connect 2014 BP204: It's Not Infernal: Dante's Nine Circles of XPages Heaven
IBM Connect 2014 BP204: It's Not Infernal: Dante's Nine Circles of XPages Heaven
Paul Withers
ย 
Ad

Recently uploaded (20)

IEDM 2024 Tutorial2_Advances in CMOS Technologies and Future Directions for C...
IEDM 2024 Tutorial2_Advances in CMOS Technologies and Future Directions for C...IEDM 2024 Tutorial2_Advances in CMOS Technologies and Future Directions for C...
IEDM 2024 Tutorial2_Advances in CMOS Technologies and Future Directions for C...
organizerofv
ย 
Dev Dives: Automate and orchestrate your processes with UiPath Maestro
Dev Dives: Automate and orchestrate your processes with UiPath MaestroDev Dives: Automate and orchestrate your processes with UiPath Maestro
Dev Dives: Automate and orchestrate your processes with UiPath Maestro
UiPathCommunity
ย 
Complete Guide to Advanced Logistics Management Software in Riyadh.pdf
Complete Guide to Advanced Logistics Management Software in Riyadh.pdfComplete Guide to Advanced Logistics Management Software in Riyadh.pdf
Complete Guide to Advanced Logistics Management Software in Riyadh.pdf
Software Company
ย 
Drupalcamp Finland โ€“ Measuring Front-end Energy Consumption
Drupalcamp Finland โ€“ Measuring Front-end Energy ConsumptionDrupalcamp Finland โ€“ Measuring Front-end Energy Consumption
Drupalcamp Finland โ€“ Measuring Front-end Energy Consumption
Exove
ย 
How Can I use the AI Hype in my Business Context?
How Can I use the AI Hype in my Business Context?How Can I use the AI Hype in my Business Context?
How Can I use the AI Hype in my Business Context?
Daniel Lehner
ย 
What is Model Context Protocol(MCP) - The new technology for communication bw...
What is Model Context Protocol(MCP) - The new technology for communication bw...What is Model Context Protocol(MCP) - The new technology for communication bw...
What is Model Context Protocol(MCP) - The new technology for communication bw...
Vishnu Singh Chundawat
ย 
Quantum Computing Quick Research Guide by Arthur Morgan
Quantum Computing Quick Research Guide by Arthur MorganQuantum Computing Quick Research Guide by Arthur Morgan
Quantum Computing Quick Research Guide by Arthur Morgan
Arthur Morgan
ย 
Greenhouse_Monitoring_Presentation.pptx.
Greenhouse_Monitoring_Presentation.pptx.Greenhouse_Monitoring_Presentation.pptx.
Greenhouse_Monitoring_Presentation.pptx.
hpbmnnxrvb
ย 
SAP Modernization: Maximizing the Value of Your SAP S/4HANA Migration.pdf
SAP Modernization: Maximizing the Value of Your SAP S/4HANA Migration.pdfSAP Modernization: Maximizing the Value of Your SAP S/4HANA Migration.pdf
SAP Modernization: Maximizing the Value of Your SAP S/4HANA Migration.pdf
Precisely
ย 
Manifest Pre-Seed Update | A Humanoid OEM Deeptech In France
Manifest Pre-Seed Update | A Humanoid OEM Deeptech In FranceManifest Pre-Seed Update | A Humanoid OEM Deeptech In France
Manifest Pre-Seed Update | A Humanoid OEM Deeptech In France
chb3
ย 
Procurement Insights Cost To Value Guide.pptx
Procurement Insights Cost To Value Guide.pptxProcurement Insights Cost To Value Guide.pptx
Procurement Insights Cost To Value Guide.pptx
Jon Hansen
ย 
TrustArc Webinar: Consumer Expectations vs Corporate Realities on Data Broker...
TrustArc Webinar: Consumer Expectations vs Corporate Realities on Data Broker...TrustArc Webinar: Consumer Expectations vs Corporate Realities on Data Broker...
TrustArc Webinar: Consumer Expectations vs Corporate Realities on Data Broker...
TrustArc
ย 
How analogue intelligence complements AI
How analogue intelligence complements AIHow analogue intelligence complements AI
How analogue intelligence complements AI
Paul Rowe
ย 
tecnologias de las primeras civilizaciones.pdf
tecnologias de las primeras civilizaciones.pdftecnologias de las primeras civilizaciones.pdf
tecnologias de las primeras civilizaciones.pdf
fjgm517
ย 
Increasing Retail Store Efficiency How can Planograms Save Time and Money.pptx
Increasing Retail Store Efficiency How can Planograms Save Time and Money.pptxIncreasing Retail Store Efficiency How can Planograms Save Time and Money.pptx
Increasing Retail Store Efficiency How can Planograms Save Time and Money.pptx
Anoop Ashok
ย 
2025-05-Q4-2024-Investor-Presentation.pptx
2025-05-Q4-2024-Investor-Presentation.pptx2025-05-Q4-2024-Investor-Presentation.pptx
2025-05-Q4-2024-Investor-Presentation.pptx
Samuele Fogagnolo
ย 
Cybersecurity Identity and Access Solutions using Azure AD
Cybersecurity Identity and Access Solutions using Azure ADCybersecurity Identity and Access Solutions using Azure AD
Cybersecurity Identity and Access Solutions using Azure AD
VICTOR MAESTRE RAMIREZ
ย 
Enhancing ICU Intelligence: How Our Functional Testing Enabled a Healthcare I...
Enhancing ICU Intelligence: How Our Functional Testing Enabled a Healthcare I...Enhancing ICU Intelligence: How Our Functional Testing Enabled a Healthcare I...
Enhancing ICU Intelligence: How Our Functional Testing Enabled a Healthcare I...
Impelsys Inc.
ย 
Massive Power Outage Hits Spain, Portugal, and France: Causes, Impact, and On...
Massive Power Outage Hits Spain, Portugal, and France: Causes, Impact, and On...Massive Power Outage Hits Spain, Portugal, and France: Causes, Impact, and On...
Massive Power Outage Hits Spain, Portugal, and France: Causes, Impact, and On...
Aqusag Technologies
ย 
AI EngineHost Review: Revolutionary USA Datacenter-Based Hosting with NVIDIA ...
AI EngineHost Review: Revolutionary USA Datacenter-Based Hosting with NVIDIA ...AI EngineHost Review: Revolutionary USA Datacenter-Based Hosting with NVIDIA ...
AI EngineHost Review: Revolutionary USA Datacenter-Based Hosting with NVIDIA ...
SOFTTECHHUB
ย 
IEDM 2024 Tutorial2_Advances in CMOS Technologies and Future Directions for C...
IEDM 2024 Tutorial2_Advances in CMOS Technologies and Future Directions for C...IEDM 2024 Tutorial2_Advances in CMOS Technologies and Future Directions for C...
IEDM 2024 Tutorial2_Advances in CMOS Technologies and Future Directions for C...
organizerofv
ย 
Dev Dives: Automate and orchestrate your processes with UiPath Maestro
Dev Dives: Automate and orchestrate your processes with UiPath MaestroDev Dives: Automate and orchestrate your processes with UiPath Maestro
Dev Dives: Automate and orchestrate your processes with UiPath Maestro
UiPathCommunity
ย 
Complete Guide to Advanced Logistics Management Software in Riyadh.pdf
Complete Guide to Advanced Logistics Management Software in Riyadh.pdfComplete Guide to Advanced Logistics Management Software in Riyadh.pdf
Complete Guide to Advanced Logistics Management Software in Riyadh.pdf
Software Company
ย 
Drupalcamp Finland โ€“ Measuring Front-end Energy Consumption
Drupalcamp Finland โ€“ Measuring Front-end Energy ConsumptionDrupalcamp Finland โ€“ Measuring Front-end Energy Consumption
Drupalcamp Finland โ€“ Measuring Front-end Energy Consumption
Exove
ย 
How Can I use the AI Hype in my Business Context?
How Can I use the AI Hype in my Business Context?How Can I use the AI Hype in my Business Context?
How Can I use the AI Hype in my Business Context?
Daniel Lehner
ย 
What is Model Context Protocol(MCP) - The new technology for communication bw...
What is Model Context Protocol(MCP) - The new technology for communication bw...What is Model Context Protocol(MCP) - The new technology for communication bw...
What is Model Context Protocol(MCP) - The new technology for communication bw...
Vishnu Singh Chundawat
ย 
Quantum Computing Quick Research Guide by Arthur Morgan
Quantum Computing Quick Research Guide by Arthur MorganQuantum Computing Quick Research Guide by Arthur Morgan
Quantum Computing Quick Research Guide by Arthur Morgan
Arthur Morgan
ย 
Greenhouse_Monitoring_Presentation.pptx.
Greenhouse_Monitoring_Presentation.pptx.Greenhouse_Monitoring_Presentation.pptx.
Greenhouse_Monitoring_Presentation.pptx.
hpbmnnxrvb
ย 
SAP Modernization: Maximizing the Value of Your SAP S/4HANA Migration.pdf
SAP Modernization: Maximizing the Value of Your SAP S/4HANA Migration.pdfSAP Modernization: Maximizing the Value of Your SAP S/4HANA Migration.pdf
SAP Modernization: Maximizing the Value of Your SAP S/4HANA Migration.pdf
Precisely
ย 
Manifest Pre-Seed Update | A Humanoid OEM Deeptech In France
Manifest Pre-Seed Update | A Humanoid OEM Deeptech In FranceManifest Pre-Seed Update | A Humanoid OEM Deeptech In France
Manifest Pre-Seed Update | A Humanoid OEM Deeptech In France
chb3
ย 
Procurement Insights Cost To Value Guide.pptx
Procurement Insights Cost To Value Guide.pptxProcurement Insights Cost To Value Guide.pptx
Procurement Insights Cost To Value Guide.pptx
Jon Hansen
ย 
TrustArc Webinar: Consumer Expectations vs Corporate Realities on Data Broker...
TrustArc Webinar: Consumer Expectations vs Corporate Realities on Data Broker...TrustArc Webinar: Consumer Expectations vs Corporate Realities on Data Broker...
TrustArc Webinar: Consumer Expectations vs Corporate Realities on Data Broker...
TrustArc
ย 
How analogue intelligence complements AI
How analogue intelligence complements AIHow analogue intelligence complements AI
How analogue intelligence complements AI
Paul Rowe
ย 
tecnologias de las primeras civilizaciones.pdf
tecnologias de las primeras civilizaciones.pdftecnologias de las primeras civilizaciones.pdf
tecnologias de las primeras civilizaciones.pdf
fjgm517
ย 
Increasing Retail Store Efficiency How can Planograms Save Time and Money.pptx
Increasing Retail Store Efficiency How can Planograms Save Time and Money.pptxIncreasing Retail Store Efficiency How can Planograms Save Time and Money.pptx
Increasing Retail Store Efficiency How can Planograms Save Time and Money.pptx
Anoop Ashok
ย 
2025-05-Q4-2024-Investor-Presentation.pptx
2025-05-Q4-2024-Investor-Presentation.pptx2025-05-Q4-2024-Investor-Presentation.pptx
2025-05-Q4-2024-Investor-Presentation.pptx
Samuele Fogagnolo
ย 
Cybersecurity Identity and Access Solutions using Azure AD
Cybersecurity Identity and Access Solutions using Azure ADCybersecurity Identity and Access Solutions using Azure AD
Cybersecurity Identity and Access Solutions using Azure AD
VICTOR MAESTRE RAMIREZ
ย 
Enhancing ICU Intelligence: How Our Functional Testing Enabled a Healthcare I...
Enhancing ICU Intelligence: How Our Functional Testing Enabled a Healthcare I...Enhancing ICU Intelligence: How Our Functional Testing Enabled a Healthcare I...
Enhancing ICU Intelligence: How Our Functional Testing Enabled a Healthcare I...
Impelsys Inc.
ย 
Massive Power Outage Hits Spain, Portugal, and France: Causes, Impact, and On...
Massive Power Outage Hits Spain, Portugal, and France: Causes, Impact, and On...Massive Power Outage Hits Spain, Portugal, and France: Causes, Impact, and On...
Massive Power Outage Hits Spain, Portugal, and France: Causes, Impact, and On...
Aqusag Technologies
ย 
AI EngineHost Review: Revolutionary USA Datacenter-Based Hosting with NVIDIA ...
AI EngineHost Review: Revolutionary USA Datacenter-Based Hosting with NVIDIA ...AI EngineHost Review: Revolutionary USA Datacenter-Based Hosting with NVIDIA ...
AI EngineHost Review: Revolutionary USA Datacenter-Based Hosting with NVIDIA ...
SOFTTECHHUB
ย 

BP206 It's Not Herculean: 12 Tasks Made Easier with IBM Domino XPages

  • 1. BP206 It's Not Herculean: Twelve Tasks Made Easier with IBMยฎ Lotus ยฎ Domino XPages Mike McGarel | Collaborative Solutions Developer Czarnowski Display Services Inc Paul Withers | IBM Collaboration Solutions Consultant Intec Systems Ltd ยฉ 2013 IBM Corporation
  • 2. Agenda ๎€Š Introduction ๎€Š The Twelve Tasks ๎€Š Bonus ๎€Š Summary 2 ยฉ 2013 IBM Corporation
  • 3. 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 3 ยฉ 2013 IBM Corporation
  • 4. Paul Withers ๎€Š IBM Champion 2011-2012, 2013 ๎€Š Co-Host The XCast ๎€Š Co-Author XPages Extension Library 4 ยฉ 2013 IBM Corporation
  • 5. 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? 5 ยฉ 2013 IBM Corporation
  • 6. Agenda ๎€Š Introduction ๎€Š The Twelve Tasks ๎€Š Bonus ๎€Š Summary 6 ยฉ 2013 IBM Corporation
  • 7. 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 7 ยฉ 2013 IBM Corporation
  • 8. First Labour: Nemean Lion 8 ยฉ 2013 IBM Corporation
  • 9. Themes ๎€Š Contain resources for entire application, for example: โ— style sheets โ— JavaScript files ๎€Š Can inherit from other themes ๎€Š Help to standardize user interface (UI) 9 ยฉ 2013 IBM Corporation
  • 10. 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:...} 10 ยฉ 2013 IBM Corporation
  • 11. 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> ๎€Š 11 ยฉ 2013 IBM Corporation
  • 12. Benefits Over Classic Notes/Domino ๎€Š More consistent interfaces ๎€Š Single source for controlling formatting ๎€Š 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:...} 12 ยฉ 2013 IBM Corporation
  • 13. Themes 13 ยฉ 2013 IBM Corporation
  • 14. Second Labour: Lernean Hydra 14 ยฉ 2013 IBM Corporation
  • 15. 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
  • 16. 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
  • 17. Repeat Controls 17 ยฉ 2013 IBM Corporation
  • 18. Third Labour โ€“ Ceryneian Hind 18 ยฉ 2013 IBM Corporation
  • 19. In View Edit 19 ยฉ 2013 IBM Corporation
  • 20. 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
  • 21. 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
  • 22. Fourth Labour โ€“ Erymanthian Boar 22 ยฉ 2013 IBM Corporation
  • 23. Design Properties 23 ยฉ 2013 IBM Corporation
  • 24. 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
  • 25. Fifth Labour: The Auguean Stables 25 ยฉ 2013 IBM Corporation
  • 26. 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
  • 27. 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
  • 28. Ajax Partial Page Refresh 28 ยฉ 2013 IBM Corporation
  • 29. Sixth Labour: Stymphalian Birds 29 ยฉ 2013 IBM Corporation
  • 30. 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
  • 31. 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
  • 32. Pager Controls 32 ยฉ 2013 IBM Corporation
  • 33. Seventh Labour: The Cretan Bull 33 ยฉ 2013 IBM Corporation
  • 34. 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
  • 35. Enabling TODOs 35 ยฉ 2013 IBM Corporation
  • 36. TODOs 36 ยฉ 2013 IBM Corporation
  • 37. Eighth Labour: The Horses of Diomedes 37 ยฉ 2013 IBM Corporation
  • 38. Labour 8.5.x: Rescue of Alcestis 38 ยฉ 2013 IBM Corporation
  • 39. Rescue Your Code From The Dead With Local History ๎€Š Eclipse-based functionality ๎€Š ๎€Š Restore From > Local History ๎€Š ๎€Š Compare With > Local History 39 ยฉ 2013 IBM Corporation
  • 40. 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
  • 41. 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
  • 42. Rescue Code From The Dead 42 ยฉ 2013 IBM Corporation
  • 43. Ninth Labour: The Belt of Hippolyte 43 ยฉ 2013 IBM Corporation
  • 44. 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
  • 45. 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
  • 46. Custom Controls 46 ยฉ 2013 IBM Corporation
  • 47. Custom Control Property Definition Example 47 ยฉ 2013 IBM Corporation
  • 48. Using The Custom Control Property Definition <xp:div id="divButtons" styleClass="divButtons" style="#{javascript:compositeData.controlStyles}"> ... </xp:div> 48 ยฉ 2013 IBM Corporation
  • 49. Tenth Labour: Geryon's Cattle 49 ยฉ 2013 IBM Corporation
  • 50. 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
  • 51. 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
  • 52. Joining Views 52 ยฉ 2013 IBM Corporation
  • 53. Eleventh Labour: Apples of The Hesperides 53 ยฉ 2013 IBM Corporation
  • 54. 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
  • 55. 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
  • 56. Displaying on Mobile 56 ยฉ 2013 IBM Corporation
  • 57. Twelfth Labour: Cerberus 57 ยฉ 2013 IBM Corporation
  • 58. 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 58 ยฉ 2013 IBM Corporation
  • 59. 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) Wednesday 4:15pm - 5:15pm 59 ยฉ 2013 IBM Corporation
  • 60. Benefits Over Classic Notes/Domino ๎€Š LotusScript debugger, but nothing easy for formula language ๎€Š No easy debugging for traditional Domino web 60 ยฉ 2013 IBM Corporation
  • 61. Agenda ๎€Š Introduction ๎€Š The Twelve Tasks ๎€Š Bonus ๎€Š Summary 61 ยฉ 2013 IBM Corporation
  • 62. XPages and Social โ€“ With XPages You're Not Alone ๎€Š Community blog posts, books ๎€Š OpenNTF (http://openntf.org) resources โ— Sample Applications โ— Custom Controls โ— XSnippets (http://openntf.org/XSnippets.nsf/home.xsp) โ— OSGi plugins โ— Libraries to extend Domino Designer ๎€Š Import and Export for Domino Designer Plugin โ— Easily import resources from OpenNTF โ— Easily export to file system or package for OpenNTF 62 ยฉ 2013 IBM Corporation
  • 63. 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 63 ยฉ 2013 IBM Corporation
  • 64. Agenda ๎€Š Introduction ๎€Š The Twelve Tasks ๎€Š Bonus ๎€Š Summary 64 ยฉ 2013 IBM Corporation
  • 65. 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! 65 ยฉ 2013 IBM Corporation
  • 66. 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) 66 ยฉ 2013 IBM Corporation
  • 67. 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 67 ยฉ 2013 IBM Corporation
  • 68. 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 68 ยฉ 2013 IBM Corporation
  • 69. Other Related 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) ๎€Š 69 ยฉ 2013 IBM Corporation
  • 70. Other Related 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) 70 ยฉ 2013 IBM Corporation
  • 71. โ€œ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 71 ยฉ 2013 IBM Corporation
  • 72. Questions and Evaluations Paul Withers Mike McGarel ICS Consultant Collaborative Solutions Developer Intec Systems Ltd Czarnowski Display Services Inc [email protected] [email protected] www.twitter.com/paulswithers www.twitter.com/mmcgarel http://www.intec.co.uk/blog www.bleedyellow.com/blogs/ McGarelGramming 72 ยฉ 2013 IBM Corporation
  • 73. Legal disclaimer ยฉ IBM Corporation 2013. All Rights Reserved. The information contained in this publication is provided for informational purposes only. While efforts were made to verify the completeness and accuracy of the information contained in this publication, it is provided AS IS without warranty of any kind, express or implied. In addition, this information is based on IBMโ€™s current product plans and strategy, which are subject to change by IBM without notice. IBM shall not be responsible for any damages arising out of the use of, or otherwise related to, this publication or any other materials. Nothing contained in this publication is intended to, nor shall have the effect of, creating any warranties or representations from IBM or its suppliers or licensors, or altering the terms and conditions of the applicable license agreement governing the use of IBM software. References in this presentation to IBM products, programs, or services do not imply that they will be available in all countries in which IBM operates. Product release dates and/or capabilities referenced in this presentation may change at any time at IBMโ€™s sole discretion based on market opportunities or other factors, and are not intended to be a commitment to future product or feature availability in any way. Nothing contained in these materials is intended to, nor shall have the effect of, stating or implying that any activities undertaken by you will result in any specific sales, revenue growth or other results. Java and all Java-based trademarks are trademarks of Sun Microsystems, Inc. in the United States, other countries, or both. All references refer to fictitious companies and persons and are used for illustration purposes only. 73 ยฉ 2013 IBM Corporation