|
|
|
To create an email that contains a HTML body is a quite simple process, but there is a lot to
think about because of the variety of emailclients and their specific behaviour in how they implement
the HTMLCSS specifications. I will here try to guide You through the complete steps needed to ... |
|
|
|
In Domino forms, you have the ability to enter text and use the PassThru HTML feature to indicate that the text should be treated has HTML. One way to simulate the same behavior on an XPage is to use a computed field control. 1. Drag a computed field control to the XPage 2. In the computed field ... |
|
|
|
Summary: This tutorial demonstrates how to create a simple NotesDocument auto-save engine for a sample NotesDatabase, using the IBM® Lotus® Domino® Create, Read, Update, Delete (CRUD) API. Our intent is to have the user's non-submitted NotesDocument auto-save after an admin-defined interval. We ... |
|
|
|
Summary: This tutorial demonstrates how to create a simple NotesDocument auto-save engine for a sample NotesDatabase, using the IBM® Lotus® Domino® Create, Read, Update, Delete (CRUD) API. Our intent is to have the user's non-submitted NotesDocument auto-save after an admin-defined interval. We ... |
|
|
|
This first article on future-proofing your Domino Applications will be to introduce the fairly well-known yet extremely under-utilized - at least when it comes to IBM Lotus Notes/Domino - software design pattern known as Model-View-Controller . MVC is - simply put - separation of Applied ... |
|
|
|
Previous | TOC | Next 1. What will you learn
You will learn how to use embedded HTML and JavaScript including Dojo. 2. Task Description
Create a new XPage in your scrap book database to explore the possibilities of embedded JavaScript and HTML. 3. Detailed Steps
1. Create a new XPage ... |
|
|
|
This small hint explains how to avoid html tag soup when developing XPages. If you use a panel or a computed field, Domino generates a DIV or SPAN tag at runtime. There are 2 steps to avoid this behaviour
in the Properties view on the Style tab activate "Disable runtime-applied default ... |
|
|
|
Question:
How can I use native html tags inside XPages? Answer:
There are 3 different ways to manually use html tags in XPages: #1: You can use the Computed Field control to emit the required HTML in its value property. Make sure to set the Content type to HTML (so ... |
|
|
|
h1 Question:h1
Lotus Domino 8.5 servers come preinstalled with a href"http:dojotoolkit.org" target"blank"Dojoa. The Dojo libraries are by default installed in {data}dominojsdojox.x.xdojo (where x.x.x is the dojo version, like dojo 1.1.1 for example)
However, by ... |
|
|
|
Question:
By default, every XPage contains a tag in the rendered HTML markup. How can I create an XPage without default form tags inside? Also, can I manually create my own form tags in an XPage? Answer:
When creating an XPage, Domino Designer automatically insert a ... |
|
|
|
Question:
How can I disable the "autocomplete" feature in browsers for input fields? Answer:
To disable the browser's own dropdown list for input text controls, set the "autocomplete" property (in "All Properties") to "off". {code:} <xp:inputText id="inputText1" ... |