<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>All about Lotus Domino Development (AaLDD)</title>
	<atom:link href="http://quintessens.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://quintessens.wordpress.com</link>
	<description>My contribution to the Lotus Notes / Domino community</description>
	<lastBuildDate>Fri, 09 Oct 2009 06:45:49 +0000</lastBuildDate>
	<generator>http://wordpress.com/</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<cloud domain='quintessens.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://www.gravatar.com/blavatar/8f749cca72928e560de64e94b3a0eb95?s=96&#038;d=http://s.wordpress.com/i/buttonw-com.png</url>
		<title>All about Lotus Domino Development (AaLDD)</title>
		<link>http://quintessens.wordpress.com</link>
	</image>
			<item>
		<title>Demo Notes View in Dojo Dijit.Tree</title>
		<link>http://quintessens.wordpress.com/2009/10/08/demo-notes-view-in-dojo-dijit-tree/</link>
		<comments>http://quintessens.wordpress.com/2009/10/08/demo-notes-view-in-dojo-dijit-tree/#comments</comments>
		<pubDate>Thu, 08 Oct 2009 17:58:06 +0000</pubDate>
		<dc:creator>Patrick Kwinten</dc:creator>
				<category><![CDATA[XPages]]></category>
		<category><![CDATA[dijit.tree]]></category>
		<category><![CDATA[Dojo]]></category>
		<category><![CDATA[partial refresh]]></category>

		<guid isPermaLink="false">http://quintessens.wordpress.com/?p=462</guid>
		<description><![CDATA[I have been prototyping trying to squeeze a Notes View into the Dojo Tree Dijit, so far so good but what I do not understand is how to invoke a partial refresh to update one or two fields with data from a document in the background?
So I guess my chances will rise if I just [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=quintessens.wordpress.com&blog=496933&post=462&subd=quintessens&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>I have been prototyping trying to squeeze a Notes View into the Dojo Tree Dijit, so far so good but what I do not understand is how to invoke a partial refresh to update one or two fields with data from a document in the background?</p>
<p>So I guess my chances will rise if I just post an example database and people could start it to work&#8230;</p>
<p><strong>Notes View</strong></p>
<p>What I got so far is the Notes View in the dijit.tree. The data for the store is collected by an Agent will runs through the View using a ViewNavigator. The data is in JSON format including the universalID as UNID.</p>
<p>I have added also an expand and collapse functions.</p>
<p><a rel="attachment wp-att-463" href="http://quintessens.wordpress.com/2009/10/08/demo-notes-view-in-dojo-dijit-tree/tree-screen-1/"><img class="alignnone size-full wp-image-463" title="tree screen 1" src="http://quintessens.files.wordpress.com/2009/10/tree-screen-1.jpg?w=480&#038;h=256" alt="tree screen 1" width="480" height="256" /></a></p>
<p>If you click on an item in the tree the corresponding document will be loaded in the browser.</p>
<p><a rel="attachment wp-att-464" href="http://quintessens.wordpress.com/2009/10/08/demo-notes-view-in-dojo-dijit-tree/tree-screen-2/"><img class="alignnone size-full wp-image-464" title="tree screen 2" src="http://quintessens.files.wordpress.com/2009/10/tree-screen-2.jpg?w=480&#038;h=260" alt="tree screen 2" width="480" height="260" /></a></p>
<p>The code for loading the dijit.tree and opening a underlying document is not so exciting:</p>
<blockquote><p>&lt;div dojoType=&#8221;dojo.data.ItemFileReadStore&#8221; url=&#8221;../(JSONAgent)?OpenAgent&amp;amp;view=$v-treeview&#8221; jsid=&#8221;navigatorStore&#8221; /&gt;<br />
&lt;div dojoType=&#8221;dijit.Tree&#8221; id=&#8221;domJSONTree1&#8243; store=&#8221;navigatorStore&#8221; labelAttr=&#8221;sname&#8221;&gt;<br />
&lt;script type=&#8221;dojo/method&#8221; event=&#8221;onClick&#8221; args=&#8221;id&#8221;&gt;<br />
if(id){<br />
window.location=navigatorStore.getValue(id,&#8221;unid&#8221;)+&#8221;?OpenDocument&#8221;;<br />
} else{<br />
alert(&#8220;No doc found.&#8221;);<br />
}<br />
&lt;/script&gt;<br />
&lt;/div&gt;<br />
&lt;/div&gt;</p></blockquote>
<p>Instructions how to enable everything <a title="previous post" href="http://quintessens.wordpress.com/2009/09/03/how-to-initiate-a-partial-refresh-from-a-dijit-tree/" target="_blank">you can read here</a>.</p>
<p><strong>Partial refresh how-tp?<br />
</strong></p>
<p>Instead of loading a complete new document I rather would do a partial refresh. But how? The partial refresh option is not available like for the build-in XPages controls:</p>
<p><a rel="attachment wp-att-465" href="http://quintessens.wordpress.com/2009/10/08/demo-notes-view-in-dojo-dijit-tree/partialrefresh/"><img class="alignnone size-full wp-image-465" title="partialrefresh" src="http://quintessens.files.wordpress.com/2009/10/partialrefresh.jpg?w=480&#038;h=203" alt="partialrefresh" width="480" height="203" /></a></p>
<p>Perhaps IBM could extend the controls with some groovy Dojo Dijits?</p>
<p>The onclick event is however available (see code) but how I could initiate there the trigger to trigger another Control that might could do the job is a mystery to me? (like in pre-XPages days you would create a button which invokes an agent and you initiate the buttonvia the <a title="example" href="http://www.notes411.com/dominosource/faq.nsf/0/AEEE64A90F0CF78C80256D6E007AC178!OpenDocument" target="_blank">_doClick way</a>) You tell me!</p>
<p>For anyone wanting to help <a title="download the file" href="http://www.easy-share.com/1908060037/XPAGESDIJITTREE.zip" target="_blank">here is an upload of an example database so you can work with it</a>&#8230; Much appreciated!</p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/quintessens.wordpress.com/462/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/quintessens.wordpress.com/462/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/quintessens.wordpress.com/462/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/quintessens.wordpress.com/462/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/quintessens.wordpress.com/462/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/quintessens.wordpress.com/462/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/quintessens.wordpress.com/462/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/quintessens.wordpress.com/462/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/quintessens.wordpress.com/462/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/quintessens.wordpress.com/462/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=quintessens.wordpress.com&blog=496933&post=462&subd=quintessens&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://quintessens.wordpress.com/2009/10/08/demo-notes-view-in-dojo-dijit-tree/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/7dd15da2bc16dba12e07a6430940ab11?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">quintessens</media:title>
		</media:content>

		<media:content url="http://quintessens.files.wordpress.com/2009/10/tree-screen-1.jpg" medium="image">
			<media:title type="html">tree screen 1</media:title>
		</media:content>

		<media:content url="http://quintessens.files.wordpress.com/2009/10/tree-screen-2.jpg" medium="image">
			<media:title type="html">tree screen 2</media:title>
		</media:content>

		<media:content url="http://quintessens.files.wordpress.com/2009/10/partialrefresh.jpg" medium="image">
			<media:title type="html">partialrefresh</media:title>
		</media:content>
	</item>
		<item>
		<title>Looking for user manual / documentation IBM Blog template</title>
		<link>http://quintessens.wordpress.com/2009/10/08/looking-for-user-manual-documentation-ibm-blog-template/</link>
		<comments>http://quintessens.wordpress.com/2009/10/08/looking-for-user-manual-documentation-ibm-blog-template/#comments</comments>
		<pubDate>Thu, 08 Oct 2009 13:58:07 +0000</pubDate>
		<dc:creator>Patrick Kwinten</dc:creator>
				<category><![CDATA[Applications]]></category>

		<guid isPermaLink="false">http://quintessens.wordpress.com/?p=453</guid>
		<description><![CDATA[Hej,
I am wondering if someone took the time for writing a user friendly manual for beginning end-users of the  IBM Blog template?
The &#8216;using this application&#8217; document does not support a good guidance for end-users.
For now I have just made an abstract of what is available in the Notes 8 Client Help.nsf ( Link ) and [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=quintessens.wordpress.com&blog=496933&post=453&subd=quintessens&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Hej,</p>
<p>I am wondering if someone took the time for writing a user friendly manual for beginning end-users of the  IBM Blog template?</p>
<p>The &#8216;using this application&#8217; document does not support a good guidance for end-users.</p>
<p>For now I have just made an abstract of what is available in the Notes 8 Client Help.nsf ( <a title="download the pdf" href="http://quintessens.files.wordpress.com/2009/10/blog-manual.pdf" target="_blank">Link</a> ) and an abstract from posts on Steve Castledines Blog ( <a title="download the pdf" href="http://quintessens.files.wordpress.com/2009/10/blog-manual-administration1.pdf" target="_blank">Link</a> ), the last one is more for application administrators or (web) designers.</p>
<p>But in case you have a friendly description of the template including some screen-dumps I would be thankful if you sharing it!</p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/quintessens.wordpress.com/453/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/quintessens.wordpress.com/453/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/quintessens.wordpress.com/453/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/quintessens.wordpress.com/453/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/quintessens.wordpress.com/453/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/quintessens.wordpress.com/453/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/quintessens.wordpress.com/453/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/quintessens.wordpress.com/453/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/quintessens.wordpress.com/453/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/quintessens.wordpress.com/453/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=quintessens.wordpress.com&blog=496933&post=453&subd=quintessens&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://quintessens.wordpress.com/2009/10/08/looking-for-user-manual-documentation-ibm-blog-template/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/7dd15da2bc16dba12e07a6430940ab11?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">quintessens</media:title>
		</media:content>
	</item>
		<item>
		<title>Now View This!</title>
		<link>http://quintessens.wordpress.com/2009/10/06/now-view-this/</link>
		<comments>http://quintessens.wordpress.com/2009/10/06/now-view-this/#comments</comments>
		<pubDate>Tue, 06 Oct 2009 19:08:00 +0000</pubDate>
		<dc:creator>Patrick Kwinten</dc:creator>
				<category><![CDATA[Lotus Domino]]></category>
		<category><![CDATA[Lotus Notes]]></category>
		<category><![CDATA[magazine]]></category>
		<category><![CDATA[The View]]></category>

		<guid isPermaLink="false">http://quintessens.wordpress.com/?p=443</guid>
		<description><![CDATA[We are moving from office landscapes so I thought at least to place our The View collection into boxes.  I was surprised that I even found the first release of the magazine:


Time goes fast when you are having fun&#8230;
       <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=quintessens.wordpress.com&blog=496933&post=443&subd=quintessens&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>We are moving from office landscapes so I thought at least to place our <a title="look at their site..." href="http://www.eview.com/" target="_blank">The View</a> collection into boxes.  I was surprised that I even found the first release of the magazine:</p>
<p><a rel="attachment wp-att-444" href="http://quintessens.wordpress.com/2009/10/06/now-view-this/attachment/06102009002/"><img class="alignnone size-full wp-image-444" title="06102009(002)" src="http://quintessens.files.wordpress.com/2009/10/06102009002.jpg?w=480&#038;h=640" alt="06102009(002)" width="480" height="640" /></a></p>
<p><a rel="attachment wp-att-445" href="http://quintessens.wordpress.com/2009/10/06/now-view-this/attachment/06102009003/"><img class="alignnone size-full wp-image-445" title="06102009(003)" src="http://quintessens.files.wordpress.com/2009/10/06102009003.jpg?w=480&#038;h=360" alt="06102009(003)" width="480" height="360" /></a></p>
<p>Time goes fast when you are having fun&#8230;</p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/quintessens.wordpress.com/443/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/quintessens.wordpress.com/443/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/quintessens.wordpress.com/443/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/quintessens.wordpress.com/443/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/quintessens.wordpress.com/443/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/quintessens.wordpress.com/443/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/quintessens.wordpress.com/443/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/quintessens.wordpress.com/443/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/quintessens.wordpress.com/443/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/quintessens.wordpress.com/443/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=quintessens.wordpress.com&blog=496933&post=443&subd=quintessens&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://quintessens.wordpress.com/2009/10/06/now-view-this/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/7dd15da2bc16dba12e07a6430940ab11?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">quintessens</media:title>
		</media:content>

		<media:content url="http://quintessens.files.wordpress.com/2009/10/06102009002.jpg" medium="image">
			<media:title type="html">06102009(002)</media:title>
		</media:content>

		<media:content url="http://quintessens.files.wordpress.com/2009/10/06102009003.jpg" medium="image">
			<media:title type="html">06102009(003)</media:title>
		</media:content>
	</item>
		<item>
		<title>Bildr &#8211; A photo sharing project</title>
		<link>http://quintessens.wordpress.com/2009/10/01/bildr-a-photo-sharing-project/</link>
		<comments>http://quintessens.wordpress.com/2009/10/01/bildr-a-photo-sharing-project/#comments</comments>
		<pubDate>Thu, 01 Oct 2009 05:15:07 +0000</pubDate>
		<dc:creator>Patrick Kwinten</dc:creator>
				<category><![CDATA[Applications]]></category>
		<category><![CDATA[Java]]></category>
		<category><![CDATA[Lotus Domino]]></category>
		<category><![CDATA[Show N Tell Thursday]]></category>
		<category><![CDATA[UI]]></category>
		<category><![CDATA[sntt]]></category>
		<category><![CDATA[flickr]]></category>
		<category><![CDATA[gallery]]></category>
		<category><![CDATA[imageflow]]></category>
		<category><![CDATA[images]]></category>
		<category><![CDATA[lightbox]]></category>
		<category><![CDATA[photos]]></category>
		<category><![CDATA[pictures]]></category>

		<guid isPermaLink="false">http://quintessens.wordpress.com/?p=425</guid>
		<description><![CDATA[Bildr is a prototype application that never received enough funding to become a full blown (internal) Notes template. The idea is to offer a place where teams can share high resolution images.
Bild is  the Swedish word for photo and Bildr refers ofcourse to Flickr.
Another reason why I stopped prototyping the database is that I started [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=quintessens.wordpress.com&blog=496933&post=425&subd=quintessens&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Bildr is a prototype application that never received enough funding to become a full blown (internal) Notes template. The idea is to offer a place where teams can share high resolution images.</p>
<p>Bild is  the Swedish word for photo and Bildr refers ofcourse to <a title="amaze" href="http://www.flickr.com/" target="_blank">Flickr</a>.</p>
<p>Another reason why I stopped prototyping the database is that I started looking at XPages and the limitations I experience with pre-XPages development. To shorten it: it takes just too many design elements to build it in the old-fashioned way to be able to offer a Web 2.5 experience. Maybe <a title="going down under" href="http://www.tourism.australia.com/" target="_blank">after a long break</a> I will move the idea behind the application into an XPages based solution.</p>
<p>For now you can download the application and use it as a start for your development project.</p>
<p><strong>What&#8217;s in it?</strong></p>
<p><strong>1. Easy import and thumbnailing of images (Notes client)</strong></p>
<p>Open any of the Picture views and select the New Upload button.</p>
<p><a rel="attachment wp-att-426" href="http://quintessens.wordpress.com/2009/10/01/bildr-a-photo-sharing-project/bildr01/"><img class="alignnone size-full wp-image-426" title="bildr01" src="http://quintessens.files.wordpress.com/2009/09/bildr01.jpg?w=480&#038;h=202" alt="bildr01" width="480" height="202" /></a></p>
<p>The idea is that you can upload multiple images at once in a new or an existing category. You can add  tags and a description to the to be created document(s). New uploads you may want to appear in the <a title="oldstuff" href="http://quintessens.wordpress.com/2009/03/30/implementing-imageflow-in-a-domino-app/" target="_blank">ImageFlow gallery</a> in the startpage and you can enable commenting and read restrictions.</p>
<p><a rel="attachment wp-att-427" href="http://quintessens.wordpress.com/2009/10/01/bildr-a-photo-sharing-project/bildr02-2/"><img class="alignnone size-full wp-image-427" title="bildr02" src="http://quintessens.files.wordpress.com/2009/09/bildr02.jpg?w=480&#038;h=427" alt="bildr02" width="480" height="427" /></a></p>
<p>When you select the Upload Images action button you can select the pictures you want to upload. The code behind this function is taken from the <a title="nsftools" href="http://www.nsftools.com/tips/JpgResizer.java" target="_blank">NSFTools site</a> (I guess). After uploading you can select to include more images or just leave it as it is.</p>
<p>Behind the scenes each picture is included in a Notes document with also a mid-size image and a thumbnail:</p>
<p><a rel="attachment wp-att-428" href="http://quintessens.wordpress.com/2009/10/01/bildr-a-photo-sharing-project/bildr03-2/"><img class="alignnone size-full wp-image-428" title="bildr03" src="http://quintessens.files.wordpress.com/2009/09/bildr03.jpg?w=480&#038;h=640" alt="bildr03" width="480" height="640" /></a></p>
<p>For the Notes client that is just it. Nothing more exciting here except some gaps in the completeness of the functionality (hey, I was talking about a prototype).</p>
<p><strong>2. Presentation (Browser)</strong></p>
<p>For the way of presenting different elements I guess I was so bold to use Jake Howlet&#8217;s<a title="DomBlog" href="http://www.codestore.net/dbapi" target="_blank"> DomBlog Template</a> (for search, calendar, commenting, RSS etc.) which was for a long time a learning application for many Domino developer. I guess if you compare the layout with that of <a title="LinkedIn" href="http://www.linkedin.com/" target="_blank">LinkedIn</a> you will see some comparison.</p>
<p><a rel="attachment wp-att-430" href="http://quintessens.wordpress.com/2009/10/01/bildr-a-photo-sharing-project/bildr05-2/"><img class="alignnone size-full wp-image-430" title="bildr05" src="http://quintessens.files.wordpress.com/2009/09/bildr05.jpg?w=480&#038;h=448" alt="bildr05" width="480" height="448" /></a></p>
<p><strong>3. Tagcloud (Browser)</strong></p>
<p>For the Tagcloud <a title="help!" href="http://quintessens.wordpress.com/2009/03/08/2-embedded-views-on-a-form-one-not-showing/" target="_blank">I got some help</a>.</p>
<p><a rel="attachment wp-att-429" href="http://quintessens.wordpress.com/2009/10/01/bildr-a-photo-sharing-project/bildr04-2/"><img class="alignnone size-full wp-image-429" title="bildr04" src="http://quintessens.files.wordpress.com/2009/09/bildr04.jpg?w=480&#038;h=337" alt="bildr04" width="480" height="337" /></a></p>
<p><strong>4. ImageFlow Gallery</strong></p>
<p><a rel="attachment wp-att-431" href="http://quintessens.wordpress.com/2009/10/01/bildr-a-photo-sharing-project/bildr06-2/"><img class="alignnone size-full wp-image-431" title="bildr06" src="http://quintessens.files.wordpress.com/2009/09/bildr06.jpg?w=480&#038;h=315" alt="bildr06" width="480" height="315" /></a></p>
<p><strong>5. Lightbox<br />
</strong></p>
<p>I guess Lightbox alike functions are almost unthinkable when looking at high resolution images so this I also included when clicking on a mid-size or thumbnail image:</p>
<p><a rel="attachment wp-att-432" href="http://quintessens.wordpress.com/2009/10/01/bildr-a-photo-sharing-project/bildr07-2/"><img class="alignnone size-full wp-image-432" title="bildr07" src="http://quintessens.files.wordpress.com/2009/09/bildr07.jpg?w=480&#038;h=398" alt="bildr07" width="480" height="398" /></a></p>
<p><strong>What is it not?</strong></p>
<p>You can not call this app a production ready application. Some things are not in place (like cleaning up categories and corresponding image documents). However it can be a nice starting point for a mature application. Untill now I experienced little or none errors so please give it a try and send me the end result of you modification.</p>
<p><a title="download the example" href="http://www.easy-share.com/1908007600/Bildr_project.zip" target="_blank">Steal with pride and improve!</a> (11 MB)</p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/quintessens.wordpress.com/425/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/quintessens.wordpress.com/425/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/quintessens.wordpress.com/425/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/quintessens.wordpress.com/425/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/quintessens.wordpress.com/425/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/quintessens.wordpress.com/425/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/quintessens.wordpress.com/425/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/quintessens.wordpress.com/425/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/quintessens.wordpress.com/425/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/quintessens.wordpress.com/425/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=quintessens.wordpress.com&blog=496933&post=425&subd=quintessens&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://quintessens.wordpress.com/2009/10/01/bildr-a-photo-sharing-project/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/7dd15da2bc16dba12e07a6430940ab11?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">quintessens</media:title>
		</media:content>

		<media:content url="http://quintessens.files.wordpress.com/2009/09/bildr01.jpg" medium="image">
			<media:title type="html">bildr01</media:title>
		</media:content>

		<media:content url="http://quintessens.files.wordpress.com/2009/09/bildr02.jpg" medium="image">
			<media:title type="html">bildr02</media:title>
		</media:content>

		<media:content url="http://quintessens.files.wordpress.com/2009/09/bildr03.jpg" medium="image">
			<media:title type="html">bildr03</media:title>
		</media:content>

		<media:content url="http://quintessens.files.wordpress.com/2009/09/bildr05.jpg" medium="image">
			<media:title type="html">bildr05</media:title>
		</media:content>

		<media:content url="http://quintessens.files.wordpress.com/2009/09/bildr04.jpg" medium="image">
			<media:title type="html">bildr04</media:title>
		</media:content>

		<media:content url="http://quintessens.files.wordpress.com/2009/09/bildr06.jpg" medium="image">
			<media:title type="html">bildr06</media:title>
		</media:content>

		<media:content url="http://quintessens.files.wordpress.com/2009/09/bildr07.jpg" medium="image">
			<media:title type="html">bildr07</media:title>
		</media:content>
	</item>
		<item>
		<title>Workflow in Notes applications</title>
		<link>http://quintessens.wordpress.com/2009/09/23/workflow-in-notes-applications/</link>
		<comments>http://quintessens.wordpress.com/2009/09/23/workflow-in-notes-applications/#comments</comments>
		<pubDate>Wed, 23 Sep 2009 08:57:57 +0000</pubDate>
		<dc:creator>Patrick Kwinten</dc:creator>
				<category><![CDATA[Applications]]></category>
		<category><![CDATA[developerWorks]]></category>
		<category><![CDATA[LotusScript]]></category>
		<category><![CDATA[The View]]></category>
		<category><![CDATA[workflow]]></category>

		<guid isPermaLink="false">http://quintessens.wordpress.com/?p=423</guid>
		<description><![CDATA[Something I like about traveling is to be able to spend some time on reading larger documents than a couple of pages. For example publications / articles from The View magazine. This time I had printed out some old skool articles regarding OO development in LotusScript. Good stuff there!
So for another trip I was thinking [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=quintessens.wordpress.com&blog=496933&post=423&subd=quintessens&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Something I like about traveling is to be able to spend some time on reading larger documents than a couple of pages. For example publications / articles from <a title="go to the view site" href="http://www.eview.com" target="_blank">The View magazine</a>. This time I had printed out some <a title="definition" href="http://encyclopedia.thefreedictionary.com/Old+skool" target="_blank">old skool</a> articles regarding <a title="search results" href="http://www.eview.com/eview/volr6.nsf/$Search?SearchView&amp;Query=oo%20AND%20lotusscript&amp;SearchOrder=&amp;SearchMax=&amp;SearchWV=FALSE&amp;SearchThesaurus=FALSE" target="_blank">OO development in LotusScript</a>. Good stuff there!</p>
<p>So for another trip I was thinking reading some publications on creating workflow application in Lotus Notes. <a title="results for workflow search" href="http://www.eview.com/eview/volr6.nsf/$Search?SearchView&amp;Query=workflow&amp;SearchOrder=&amp;SearchMax=&amp;SearchWV=FALSE&amp;SearchThesaurus=FALSE" target="_blank">The results</a>? Hmmm quiet disappointing. You would start to believe Notes is just not build for workflow.</p>
<p>I believe The View sends out a survey every now and then asking what the interest of their audience is but making this more transparent to the outside world via <a title="i have an idea" href="http://ideajam.net/" target="_blank">IdeaJam</a> would that not be something for them? Just a thought (could be used also for <a title="developerWorks website" href="http://www.ibm.com/developerworks/lotus/" target="_blank">IBM developerWorks</a>).</p>
<p>In the meantime: If you know a good online source to read some tutorials, hints, tips, examples for creating workflow applications in Lotus Notes don&#8217;t hesitate to drop an URL here. Thanks!</p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/quintessens.wordpress.com/423/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/quintessens.wordpress.com/423/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/quintessens.wordpress.com/423/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/quintessens.wordpress.com/423/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/quintessens.wordpress.com/423/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/quintessens.wordpress.com/423/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/quintessens.wordpress.com/423/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/quintessens.wordpress.com/423/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/quintessens.wordpress.com/423/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/quintessens.wordpress.com/423/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=quintessens.wordpress.com&blog=496933&post=423&subd=quintessens&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://quintessens.wordpress.com/2009/09/23/workflow-in-notes-applications/feed/</wfw:commentRss>
		<slash:comments>10</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/7dd15da2bc16dba12e07a6430940ab11?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">quintessens</media:title>
		</media:content>
	</item>
		<item>
		<title>Not so popular on Ideajam</title>
		<link>http://quintessens.wordpress.com/2009/09/07/not-so-popular-on-ideajam/</link>
		<comments>http://quintessens.wordpress.com/2009/09/07/not-so-popular-on-ideajam/#comments</comments>
		<pubDate>Mon, 07 Sep 2009 18:45:17 +0000</pubDate>
		<dc:creator>Patrick Kwinten</dc:creator>
				<category><![CDATA[Applications]]></category>
		<category><![CDATA[Lotus Notes]]></category>
		<category><![CDATA[ideajam]]></category>

		<guid isPermaLink="false">http://quintessens.wordpress.com/?p=411</guid>
		<description><![CDATA[What started as a joke (but with some serious undertone) has resulted in one of the most demoted ideas on Ideajam.

To be honest: how often do you prefer that users would call your work an &#8216;application&#8217; instead of a &#8216;database&#8217; ?
For all the &#8216;purple trousers&#8217; marketeers: Lotus Knows&#8230; an application is more than a database.
 [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=quintessens.wordpress.com&blog=496933&post=411&subd=quintessens&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>What started as a joke (<a title="link to ideajam" href="http://ideajam.net/IdeaJam/P/ij.nsf/0/5C8DDA832033EFBF862573A8002A916E?OpenDocument" target="_blank">but with some serious undertone</a>) has resulted in one of the most demoted ideas on Ideajam.</p>
<p><a rel="attachment wp-att-412" href="http://quintessens.wordpress.com/2009/09/07/not-so-popular-on-ideajam/ideajam-2/"><img class="alignnone size-full wp-image-412" title="ideajam" src="http://quintessens.files.wordpress.com/2009/09/ideajam.jpg?w=460&#038;h=503" alt="ideajam" width="460" height="503"></a></p>
<p>To be honest: how often do you prefer that users would call your work an &#8216;application&#8217; instead of a &#8216;database&#8217; ?</p>
<p>For all the &#8216;purple trousers&#8217; marketeers: Lotus Knows&#8230; an application is more than a database.</p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/quintessens.wordpress.com/411/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/quintessens.wordpress.com/411/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/quintessens.wordpress.com/411/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/quintessens.wordpress.com/411/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/quintessens.wordpress.com/411/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/quintessens.wordpress.com/411/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/quintessens.wordpress.com/411/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/quintessens.wordpress.com/411/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/quintessens.wordpress.com/411/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/quintessens.wordpress.com/411/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=quintessens.wordpress.com&blog=496933&post=411&subd=quintessens&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://quintessens.wordpress.com/2009/09/07/not-so-popular-on-ideajam/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/7dd15da2bc16dba12e07a6430940ab11?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">quintessens</media:title>
		</media:content>

		<media:content url="http://quintessens.files.wordpress.com/2009/09/ideajam.jpg" medium="image">
			<media:title type="html">ideajam</media:title>
		</media:content>
	</item>
		<item>
		<title>Writing Java to build applications using IBM Lotus Domino Designer</title>
		<link>http://quintessens.wordpress.com/2009/09/06/writing-java-to-build-applications-using-ibm-lotus-domino-designer/</link>
		<comments>http://quintessens.wordpress.com/2009/09/06/writing-java-to-build-applications-using-ibm-lotus-domino-designer/#comments</comments>
		<pubDate>Sun, 06 Sep 2009 18:58:14 +0000</pubDate>
		<dc:creator>Patrick Kwinten</dc:creator>
				<category><![CDATA[Java]]></category>
		<category><![CDATA[books]]></category>

		<guid isPermaLink="false">http://quintessens.wordpress.com/?p=409</guid>
		<description><![CDATA[On the Lotus part of IBM&#8217;s developerWork you can find a clear, simple introduction to Java for LotusScript developers. With Notes 8 available for considerable period would it not be time for a proper book about Domino Development in Java?
       <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=quintessens.wordpress.com&blog=496933&post=409&subd=quintessens&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>On the <a title="Lotus on developerWork" href="http://www.ibm.com/developerworks/lotus/" target="_blank">Lotus part</a> of IBM&#8217;s developerWork you can find a clear, simple <a title="to the articel" href="http://www.ibm.com/developerworks/lotus/documentation/d-ls-javaapps/" target="_blank">introduction to Java</a> for LotusScript developers. With Notes 8 available for considerable period would it not be time for a proper book about <a title="old book *sigh*" href="http://www.dominopower.com/issues/issue200212/bookreview001.html" target="_blank">Domino Development in Java</a>?</p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/quintessens.wordpress.com/409/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/quintessens.wordpress.com/409/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/quintessens.wordpress.com/409/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/quintessens.wordpress.com/409/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/quintessens.wordpress.com/409/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/quintessens.wordpress.com/409/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/quintessens.wordpress.com/409/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/quintessens.wordpress.com/409/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/quintessens.wordpress.com/409/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/quintessens.wordpress.com/409/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=quintessens.wordpress.com&blog=496933&post=409&subd=quintessens&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://quintessens.wordpress.com/2009/09/06/writing-java-to-build-applications-using-ibm-lotus-domino-designer/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/7dd15da2bc16dba12e07a6430940ab11?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">quintessens</media:title>
		</media:content>
	</item>
		<item>
		<title>My first experience(s) with Domino Designer 8.5plus</title>
		<link>http://quintessens.wordpress.com/2009/09/06/my-first-experiences-with-domino-designer-8-5plus/</link>
		<comments>http://quintessens.wordpress.com/2009/09/06/my-first-experiences-with-domino-designer-8-5plus/#comments</comments>
		<pubDate>Sun, 06 Sep 2009 14:50:28 +0000</pubDate>
		<dc:creator>Patrick Kwinten</dc:creator>
				<category><![CDATA[Dojo]]></category>
		<category><![CDATA[XPages]]></category>
		<category><![CDATA[development]]></category>

		<guid isPermaLink="false">http://quintessens.wordpress.com/?p=326</guid>
		<description><![CDATA[I am testing the latest drop-code for Domino Designer 8.5plus and it is my first development experience with XPages. I just thought I will write down my first experiences, maybe it may be useful one time. At first I was not sure enough to publish this, but it was announced that design partners may write [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=quintessens.wordpress.com&blog=496933&post=326&subd=quintessens&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>I am testing the latest drop-code for Domino Designer 8.5plus and it is my first development experience with XPages. I just thought I will write down my first experiences, maybe it may be useful one time. At first I was not sure enough to publish this, but it was announced that design partners may write about the design program I fell more confident to do so. For now working with  XPages can not be described as love on first sight.</p>
<p><strong>First impression</strong></p>
<p>Coming from a generation of Notes developers prior to 4.5 this version of Designer impresses me most. It makes Notes 5 as &#8217;super human software&#8217; a joke. The other releases 6 and 7 where not spectacular, you just saw Notes getting behind other development platforms.</p>
<p>So 8.5plus gives a refreshment and hope for the future.</p>
<p><strong>My experiences</strong></p>
<p>With high expectations come also delusions.</p>
<p>As learning example I use a <a title="course link" href="http://www.emvege.se/kursomraade-it-teknik/lotus/lotus-kurser/applikationsutveckling/ddxp/" target="_blank">workshop designing in XPages by Emvege</a> and  <a title="jump to DL's blog" href="http://www.qtzar.com/" target="_blank">Declan Lynch</a> lines of articles how to create a basic XPages based application. I also followed the short tutorial in the Designer Help for as long at that one is helpful. Their is definitely a need for adequate developer&#8217;s tutorials IBM, you can&#8217;t release a new way of developing without providing proper educational material. The Developers Help is just not supportive enough.</p>
<p><strong>Application (database) properties</strong></p>
<p>Much better!  The prior properties box for database was difficult to read. Too bad that text / labels can not be copied as text to the clipboard.</p>
<p><strong>DIVs are poorly visualized<br />
</strong></p>
<p>In Declan&#8217;s tutorial he uses DIV&#8217;s to position blocks of data. When editing the XPage in Designer the present of DIV&#8217;s are seen when looking at the source code. Some nice mouse-over with dotted lines would make this more clear.</p>
<p>Okej this gets reduced when you place your DIV&#8217;s in custom controls.</p>
<p>Line numbering and being able to collapse blocks of code are nice new add-ons.</p>
<p><strong>Source code view</strong></p>
<p>Oh boy your XPages are a mess when you view the source code. Some people like to indent their code, since they know someone after them are going to give support on the applications. Indenting the source code is a disaster. Tab forward is doable for multiple lines of code but tab backwards? I wonder how the code for IBM templates will look like&#8230; Please take a look to example at good WYSIWYG editors where you can indent blocks of text via buttons.</p>
<p>I guess no-one wants to be hand-over unreadable messy-spreaded code, do you?</p>
<p><strong>OneUI Theme<br />
</strong></p>
<p>I guess you have to do your homework a bit for understanding the oneUI theme (or other defaut themes). When I tried to apply some common styles from that theme on elements on my XPage I got some unwanted results. This forces me to go back to my common CSS knowledge and not able to exploit the features in the oneUI theme. Does anyone know a good description for all the styleClasses?</p>
<p><strong>Dojo</strong></p>
<p>Dojo is still a mystic for me, I have worked a lot with Prototype and Scriptaculous before, but basic knowledge of Dojo seems to be necessary if you want to go beyond basic XPage development. <a title="dojo course" href="http://www.emvege.se/kursomraade-it-teknik/lotus/lotus-kurser/dddojo85/" target="_blank">New courses</a> seem to become available but in these low economic times budgets are frozen. Okej for now I could do with <a title="mastering Dojo" href="http://pragprog.com/titles/rgdojo/mastering-dojo" target="_blank">a good book</a> on Dojo.</p>
<p><strong>Performance</strong></p>
<p>I do not know what your experiences are but XPages are far from fast. Just put in a rich text field and see how many files are being called.</p>
<p><strong>Advanced programming</strong></p>
<p>From moving to a senior Domino programmer into a novice XPage developer feels a bit awkward. Some goals you want to achieve are so basic knowledge in previous Domino development. In XPages I find it hard to find a way to solve the question. I guess my more novice co-workers will find it even hard to understand how they must develop in XPages. Best practices, tutorials that have  broad range of topics and go beyond using the default usages of core controls are rare. So no head-starts here.</p>
<p>I guess I am not alone in this area, so maybe an official IBM place where you can post your question and get some leads how to solve you problem would be a winner for most developers. I guess for now the 8.5 forum is that place to be. We all know that that place has never won a price for usability (sigh).</p>
<p><strong>Road ahead</strong></p>
<p>I guess finally we will come to a point where we release our first XPage based application and where we are proud of. For now we are far from that. Luckily the winter starts early in Sweden and it will be long so we have a lot of time to be inside and read and study.</p>
<p>In the meantime I am just saving all your XPages blog-posts in a Notes database so I can use that as a reference when my colleagues start developing in XPages. &#8220;Good practice does follow&#8221; so please keep contributing your findings via blogs&#8230;</p>
<p><strong>Disclaimer</strong></p>
<p><!--  div.lotusnotesemailheader{display: none;} --><!--  div.lotusnotesemailheader{display: inline;} --><em>IBM Lotus Notes/Domino and Lotus Notes Traveler 8.5.1 is  prerelease code and there are no guarantees from IBM that the functionality  presented or discussed will be in the final shipping product.</em></p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/quintessens.wordpress.com/326/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/quintessens.wordpress.com/326/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/quintessens.wordpress.com/326/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/quintessens.wordpress.com/326/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/quintessens.wordpress.com/326/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/quintessens.wordpress.com/326/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/quintessens.wordpress.com/326/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/quintessens.wordpress.com/326/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/quintessens.wordpress.com/326/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/quintessens.wordpress.com/326/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=quintessens.wordpress.com&blog=496933&post=326&subd=quintessens&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://quintessens.wordpress.com/2009/09/06/my-first-experiences-with-domino-designer-8-5plus/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/7dd15da2bc16dba12e07a6430940ab11?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">quintessens</media:title>
		</media:content>
	</item>
		<item>
		<title>How to initiate a partial refresh from a dijit.tree?</title>
		<link>http://quintessens.wordpress.com/2009/09/03/how-to-initiate-a-partial-refresh-from-a-dijit-tree/</link>
		<comments>http://quintessens.wordpress.com/2009/09/03/how-to-initiate-a-partial-refresh-from-a-dijit-tree/#comments</comments>
		<pubDate>Thu, 03 Sep 2009 15:01:38 +0000</pubDate>
		<dc:creator>Patrick Kwinten</dc:creator>
				<category><![CDATA[Dojo]]></category>
		<category><![CDATA[XPages]]></category>

		<guid isPermaLink="false">http://quintessens.wordpress.com/?p=398</guid>
		<description><![CDATA[On an XPage I have a dojo.dijitree module which uses a Notes View as the datastore.
I have the universal ID of the referring document available for each item in my tree widget.
What I would like to do know is when some clicks on an item that a part of the content on the XPage gets [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=quintessens.wordpress.com&blog=496933&post=398&subd=quintessens&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>On an XPage I have a dojo.dijitree module which uses a Notes View as the datastore.</p>
<p>I have the universal ID of the referring document available for each item in my tree widget.</p>
<p>What I would like to do know is when some clicks on an item that a part of the content on the XPage gets refreshed with a part (data field) of the referring document. But I am not sure how to do this.</p>
<p>The only thing I have is an onclick event on my tree-item.</p>
<p>When I have have a button with the partical refresh enabled it says:</p>
<blockquote><p>&lt;xp:eventHandler event=&#8221;onclick&#8221; submit=&#8221;true&#8221; refreshMode=&#8221;partial&#8221; refreshId=&#8221;PaneToRefresh&#8221;&gt;</p></blockquote>
<p>Then I can place an server side action like:</p>
<blockquote><p>&lt;xp:this.action&gt;<br />
&lt;xp:executeScript&gt;<br />
&lt;xp:this.script&gt;&lt;![CDATA[#{javascript:alert("hi");}]]&gt;&lt;/xp:this.script&gt;<br />
&lt;/xp:executeScript&gt;<br />
&lt;/xp:this.action&gt;</p></blockquote>
<p>If I place this action under my script I get the problem indication:</p>
<blockquote><p>The markup tag script can only contain controls and markup tags.</p></blockquote>
<p>So if you have a clue how to place a partial refresh under a &#8216;normal&#8217; script that collects data from a document somewhere else then I would be greatful to hear it from you&#8230;</p>
<p>Cheers</p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/quintessens.wordpress.com/398/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/quintessens.wordpress.com/398/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/quintessens.wordpress.com/398/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/quintessens.wordpress.com/398/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/quintessens.wordpress.com/398/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/quintessens.wordpress.com/398/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/quintessens.wordpress.com/398/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/quintessens.wordpress.com/398/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/quintessens.wordpress.com/398/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/quintessens.wordpress.com/398/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=quintessens.wordpress.com&blog=496933&post=398&subd=quintessens&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://quintessens.wordpress.com/2009/09/03/how-to-initiate-a-partial-refresh-from-a-dijit-tree/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/7dd15da2bc16dba12e07a6430940ab11?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">quintessens</media:title>
		</media:content>
	</item>
		<item>
		<title>UI Example LN application</title>
		<link>http://quintessens.wordpress.com/2009/08/29/ui-example-ln-application/</link>
		<comments>http://quintessens.wordpress.com/2009/08/29/ui-example-ln-application/#comments</comments>
		<pubDate>Sat, 29 Aug 2009 11:57:53 +0000</pubDate>
		<dc:creator>Patrick Kwinten</dc:creator>
				<category><![CDATA[Applications]]></category>
		<category><![CDATA[Frameset]]></category>
		<category><![CDATA[UI]]></category>
		<category><![CDATA[preview pane]]></category>

		<guid isPermaLink="false">http://quintessens.wordpress.com/?p=384</guid>
		<description><![CDATA[Even though Notes 8.5.1 can be expected soon reality learns us however that a lot of users are still on versions 7 or even 6. Ofcourse you could use the limitations in the UI as an argument to force them to upgrade to newer versions of Notes, but then still a lot would run the [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=quintessens.wordpress.com&blog=496933&post=384&subd=quintessens&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Even though <a title="ed brill" href="http://www.edbrill.com/ebrill/edbrill.nsf/dx/bloggers-are-blogging-about-8.5.1?opendocument" target="_blank">Notes 8.5.1 can be expected soon</a> reality learns us however that a lot of users are still on versions 7 or even 6. Ofcourse you could use the limitations in the UI as an argument to force them to upgrade to newer versions of Notes, but then still a lot would run the basic client, not the standard one, so nice looking Java Views are still a long way to go.</p>
<p>I wrote <a title="old post" href="http://quintessens.wordpress.com/2008/09/07/great-ui-examples-for-ln-applications-recap/" target="_blank">before</a> something about UI&#8217;s in Lotus Notes but now I was thinking about adding an example so those who are interested can test it and give feedback or use it for their projects. Whatever.</p>
<p><a title="link todownload" href="http://rapidshare.com/files/283499100/tmpl_Notes7_frmwrk.zip.html" target="_blank">Here is the link</a> to the download. Below you can find some snapshots of the UI:</p>
<div id="attachment_385" class="wp-caption alignnone" style="width: 459px"><a rel="attachment wp-att-385" href="http://quintessens.wordpress.com/2009/08/29/ui-example-ln-application/basics01/"><img class="size-full wp-image-385" title="basics01" src="http://quintessens.files.wordpress.com/2009/08/basics01.jpg?w=449&#038;h=228" alt="Notes View used as horizontal menu" width="449" height="228" /></a><p class="wp-caption-text">Notes View used as horizontal menu</p></div>
<div id="attachment_386" class="wp-caption alignnone" style="width: 217px"><a rel="attachment wp-att-386" href="http://quintessens.wordpress.com/2009/08/29/ui-example-ln-application/basics02/"><img class="size-full wp-image-386" title="basics02" src="http://quintessens.files.wordpress.com/2009/08/basics02.jpg?w=207&#038;h=245" alt="Collapsible Vertical Menus" width="207" height="245" /></a><p class="wp-caption-text">Collapsible Vertical Menus</p></div>
<div id="attachment_387" class="wp-caption alignnone" style="width: 442px"><a rel="attachment wp-att-387" href="http://quintessens.wordpress.com/2009/08/29/ui-example-ln-application/basics03/"><img class="size-full wp-image-387" title="basics03" src="http://quintessens.files.wordpress.com/2009/08/basics03.jpg?w=432&#038;h=381" alt="Vertical Menu placed in preview pane" width="432" height="381" /></a><p class="wp-caption-text">Vertical Menu placed in preview pane</p></div>
<div id="attachment_388" class="wp-caption alignnone" style="width: 490px"><a rel="attachment wp-att-388" href="http://quintessens.wordpress.com/2009/08/29/ui-example-ln-application/basics04/"><img class="size-full wp-image-388" title="basics04" src="http://quintessens.files.wordpress.com/2009/08/basics04.jpg?w=480&#038;h=279" alt="Preview on bottom by default" width="480" height="279" /></a><p class="wp-caption-text">Preview on bottom by default</p></div>
<div id="attachment_389" class="wp-caption alignnone" style="width: 260px"><a rel="attachment wp-att-389" href="http://quintessens.wordpress.com/2009/08/29/ui-example-ln-application/basics05/"><img class="size-full wp-image-389" title="basics05" src="http://quintessens.files.wordpress.com/2009/08/basics05.jpg?w=250&#038;h=131" alt="Option to switch place for preview pane" width="250" height="131" /></a><p class="wp-caption-text">Option to switch place for preview pane</p></div>
<div id="attachment_390" class="wp-caption alignnone" style="width: 489px"><a rel="attachment wp-att-390" href="http://quintessens.wordpress.com/2009/08/29/ui-example-ln-application/basics06/"><img class="size-full wp-image-390" title="basics06" src="http://quintessens.files.wordpress.com/2009/08/basics06.jpg?w=479&#038;h=332" alt="Form example 1" width="479" height="332" /></a><p class="wp-caption-text">Form example 1</p></div>
<div id="attachment_391" class="wp-caption alignnone" style="width: 490px"><a rel="attachment wp-att-391" href="http://quintessens.wordpress.com/2009/08/29/ui-example-ln-application/basics07/"><img class="size-full wp-image-391" title="basics07" src="http://quintessens.files.wordpress.com/2009/08/basics07.jpg?w=480&#038;h=368" alt="Form example 2" width="480" height="368" /></a><p class="wp-caption-text">Form example 2</p></div>
<div id="attachment_392" class="wp-caption alignnone" style="width: 489px"><a rel="attachment wp-att-392" href="http://quintessens.wordpress.com/2009/08/29/ui-example-ln-application/basics08/"><img class="size-full wp-image-392" title="basics08" src="http://quintessens.files.wordpress.com/2009/08/basics08.jpg?w=479&#038;h=266" alt="Form example 3" width="479" height="266" /></a><p class="wp-caption-text">Form example 3</p></div>
<div id="attachment_393" class="wp-caption alignnone" style="width: 490px"><a rel="attachment wp-att-393" href="http://quintessens.wordpress.com/2009/08/29/ui-example-ln-application/basics09/"><img class="size-full wp-image-393" title="basics09" src="http://quintessens.files.wordpress.com/2009/08/basics09.jpg?w=480&#038;h=264" alt="Form example 4" width="480" height="264" /></a><p class="wp-caption-text">Form example 4</p></div>
<p>Well hopefully one day we have a &#8220;<a title="CSS Zen Garden website" href="http://www.csszengarden.com/" target="_blank">CSS Zen Garden</a>&#8221; equivalent somewhere one <a title="OpenNTF website" href="http://www.openntf.org/Internal/home.nsf/web/projects.html" target="_blank">OpenNTF</a> where people can post good UI examples. Further may we say:</p>
<blockquote><p>with every Notes Client installation with a version of Notes 7 or older a kitten dies?</p></blockquote>
<div class="wp-caption alignnone" style="width: 410px"><img title="faster pussycat " src="http://mikecane.files.wordpress.com/2007/03/kitten.jpg?w=400&#038;h=293" alt="faster pussycat " width="400" height="293" /><p class="wp-caption-text">faster pussycat </p></div>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/quintessens.wordpress.com/384/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/quintessens.wordpress.com/384/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/quintessens.wordpress.com/384/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/quintessens.wordpress.com/384/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/quintessens.wordpress.com/384/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/quintessens.wordpress.com/384/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/quintessens.wordpress.com/384/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/quintessens.wordpress.com/384/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/quintessens.wordpress.com/384/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/quintessens.wordpress.com/384/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=quintessens.wordpress.com&blog=496933&post=384&subd=quintessens&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://quintessens.wordpress.com/2009/08/29/ui-example-ln-application/feed/</wfw:commentRss>
		<slash:comments>13</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/7dd15da2bc16dba12e07a6430940ab11?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">quintessens</media:title>
		</media:content>

		<media:content url="http://quintessens.files.wordpress.com/2009/08/basics01.jpg" medium="image">
			<media:title type="html">basics01</media:title>
		</media:content>

		<media:content url="http://quintessens.files.wordpress.com/2009/08/basics02.jpg" medium="image">
			<media:title type="html">basics02</media:title>
		</media:content>

		<media:content url="http://quintessens.files.wordpress.com/2009/08/basics03.jpg" medium="image">
			<media:title type="html">basics03</media:title>
		</media:content>

		<media:content url="http://quintessens.files.wordpress.com/2009/08/basics04.jpg" medium="image">
			<media:title type="html">basics04</media:title>
		</media:content>

		<media:content url="http://quintessens.files.wordpress.com/2009/08/basics05.jpg" medium="image">
			<media:title type="html">basics05</media:title>
		</media:content>

		<media:content url="http://quintessens.files.wordpress.com/2009/08/basics06.jpg" medium="image">
			<media:title type="html">basics06</media:title>
		</media:content>

		<media:content url="http://quintessens.files.wordpress.com/2009/08/basics07.jpg" medium="image">
			<media:title type="html">basics07</media:title>
		</media:content>

		<media:content url="http://quintessens.files.wordpress.com/2009/08/basics08.jpg" medium="image">
			<media:title type="html">basics08</media:title>
		</media:content>

		<media:content url="http://quintessens.files.wordpress.com/2009/08/basics09.jpg" medium="image">
			<media:title type="html">basics09</media:title>
		</media:content>

		<media:content url="http://mikecane.files.wordpress.com/2007/03/kitten.jpg" medium="image">
			<media:title type="html">faster pussycat </media:title>
		</media:content>
	</item>
		<item>
		<title>Displaying a Domino view in the dojo dijit.tree</title>
		<link>http://quintessens.wordpress.com/2009/08/18/displaying-a-domino-view-in-the-dojo-dijit-tree/</link>
		<comments>http://quintessens.wordpress.com/2009/08/18/displaying-a-domino-view-in-the-dojo-dijit-tree/#comments</comments>
		<pubDate>Tue, 18 Aug 2009 14:19:21 +0000</pubDate>
		<dc:creator>Patrick Kwinten</dc:creator>
				<category><![CDATA[Dojo]]></category>
		<category><![CDATA[JSON]]></category>
		<category><![CDATA[View]]></category>
		<category><![CDATA[dijit]]></category>
		<category><![CDATA[XPages]]></category>

		<guid isPermaLink="false">http://quintessens.wordpress.com/?p=381</guid>
		<description><![CDATA[Just before I will stamp some time in displaying a categorzied Domino View in a dojo dijit.tree I am wondering if anyone has done this before and is willing to share the code? Google brought me do far no fortune (allthough I was near).
For now I have managed to display a flat view in the [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=quintessens.wordpress.com&blog=496933&post=381&subd=quintessens&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Just before I will stamp some time in displaying a categorzied Domino View in a <a href="http://docs.dojocampus.org/dijit/Tree" target="_blank">dojo dijit.tree</a> I am wondering if anyone has done this before and is willing to share the code? Google brought me do far no fortune (<a href="http://www.kalechi.com/comments.nsf/dx/06012009031125PMBLIRKQ.htm" target="_blank">allthough I was near</a>).</p>
<p>For now I have managed to display a flat view in the dijit.tree, for generating the proper JSON I use an agent that collects the data in a View. Calling directly a view via the ?ReadViewEntries&amp;OutputFormat=JSON delivers an overload of information.</p>
<p>As source I woud like to use a View with documents in a response hierarchy like I <a href="http://quintessens.wordpress.com/2009/07/28/jquery-treeview-menu-from-notes-view/" target="_blank">described before here</a>.</p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/quintessens.wordpress.com/381/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/quintessens.wordpress.com/381/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/quintessens.wordpress.com/381/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/quintessens.wordpress.com/381/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/quintessens.wordpress.com/381/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/quintessens.wordpress.com/381/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/quintessens.wordpress.com/381/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/quintessens.wordpress.com/381/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/quintessens.wordpress.com/381/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/quintessens.wordpress.com/381/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=quintessens.wordpress.com&blog=496933&post=381&subd=quintessens&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://quintessens.wordpress.com/2009/08/18/displaying-a-domino-view-in-the-dojo-dijit-tree/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/7dd15da2bc16dba12e07a6430940ab11?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">quintessens</media:title>
		</media:content>
	</item>
		<item>
		<title>XPages &#8211; getting a doc in Edit mode. Best way?</title>
		<link>http://quintessens.wordpress.com/2009/08/11/xpages-getting-a-doc-in-edit-mode-best-way/</link>
		<comments>http://quintessens.wordpress.com/2009/08/11/xpages-getting-a-doc-in-edit-mode-best-way/#comments</comments>
		<pubDate>Tue, 11 Aug 2009 15:16:36 +0000</pubDate>
		<dc:creator>Patrick Kwinten</dc:creator>
				<category><![CDATA[XPages]]></category>

		<guid isPermaLink="false">http://quintessens.wordpress.com/?p=379</guid>
		<description><![CDATA[Me and my colleague got quiet frustrated today with getting a document into edit mode. Why? In one database the routine works in another database it doesn&#8217;t.
What is the best way to be able to get a document from for example:

a View control or
a Table control

into Edit mode (after opening the document first for reading)?
It [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=quintessens.wordpress.com&blog=496933&post=379&subd=quintessens&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Me and my colleague got quiet frustrated today with getting a document into edit mode. Why? In one database the routine works in another database it doesn&#8217;t.</p>
<p>What is the best way to be able to get a document from for example:</p>
<ul>
<li>a View control or</li>
<li>a Table control</li>
</ul>
<p>into Edit mode (after opening the document first for reading)?</p>
<p>It seems adding a link on the XPage which is used for opening the Document (in read mode) and applying an Action on the onClick event (Change Document Mode) has some uncertain behaviours.</p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/quintessens.wordpress.com/379/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/quintessens.wordpress.com/379/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/quintessens.wordpress.com/379/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/quintessens.wordpress.com/379/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/quintessens.wordpress.com/379/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/quintessens.wordpress.com/379/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/quintessens.wordpress.com/379/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/quintessens.wordpress.com/379/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/quintessens.wordpress.com/379/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/quintessens.wordpress.com/379/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=quintessens.wordpress.com&blog=496933&post=379&subd=quintessens&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://quintessens.wordpress.com/2009/08/11/xpages-getting-a-doc-in-edit-mode-best-way/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/7dd15da2bc16dba12e07a6430940ab11?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">quintessens</media:title>
		</media:content>
	</item>
		<item>
		<title>View control messed up in Declan&#8217;s template</title>
		<link>http://quintessens.wordpress.com/2009/08/07/view-control-messed-up-in-declans-template/</link>
		<comments>http://quintessens.wordpress.com/2009/08/07/view-control-messed-up-in-declans-template/#comments</comments>
		<pubDate>Fri, 07 Aug 2009 09:57:50 +0000</pubDate>
		<dc:creator>Patrick Kwinten</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[XPages]]></category>

		<guid isPermaLink="false">http://quintessens.wordpress.com/?p=369</guid>
		<description><![CDATA[For those of you who would like to use Declan Sciolla-Lynch&#8217;s XPage framework as a default development template I have a warning when using View controls. It will lack the default presentation layer as you expect it would look like.
Here is how it shall look like:

I guess you rather would like that it will look [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=quintessens.wordpress.com&blog=496933&post=369&subd=quintessens&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>For those of you who would like to use <a href="http://www.qtzar.com/blogs/qtzar.nsf/htdocs/LearningXPages.htm" target="_blank">Declan Sciolla-Lynch&#8217;s XPage framework</a> as a default development template I have a warning when using View controls. It will lack the default presentation layer as you expect it would look like.</p>
<p>Here is how it shall look like:</p>
<p><a rel="attachment wp-att-370" href="http://quintessens.wordpress.com/2009/08/07/view-control-messed-up-in-declans-template/bug01/"><img class="alignnone size-full wp-image-370" title="bug01" src="http://quintessens.files.wordpress.com/2009/08/bug01.jpg?w=480&#038;h=367" alt="bug01" width="480" height="367" /></a></p>
<p>I guess you rather would like that it will look something like this:</p>
<p><a rel="attachment wp-att-371" href="http://quintessens.wordpress.com/2009/08/07/view-control-messed-up-in-declans-template/bugfix/"><img class="alignnone size-full wp-image-371" title="bugfix" src="http://quintessens.files.wordpress.com/2009/08/bugfix.jpg?w=480&#038;h=343" alt="bugfix" width="480" height="343" /></a></p>
<p>The reason for it is that the oneUI Theme does not extend the oneui theme. So in that theme add the following line:</p>
<blockquote><p>&lt;theme <strong>extends=&#8221;oneui&#8221;</strong>&gt;</p></blockquote>
<p>What you will notice then is that the application name will break the design:</p>
<p><a rel="attachment wp-att-372" href="http://quintessens.wordpress.com/2009/08/07/view-control-messed-up-in-declans-template/bug02/"><img class="alignnone size-full wp-image-372" title="bug02" src="http://quintessens.files.wordpress.com/2009/08/bug02.jpg?w=480&#038;h=254" alt="bug02" width="480" height="254" /></a></p>
<p>Add an extra DIV to the bar section and clear any floating:</p>
<p><a rel="attachment wp-att-373" href="http://quintessens.wordpress.com/2009/08/07/view-control-messed-up-in-declans-template/bug03/"><img class="alignnone size-full wp-image-373" title="bug03" src="http://quintessens.files.wordpress.com/2009/08/bug03.jpg?w=319&#038;h=69" alt="bug03" width="319" height="69" /></a></p>
<p>The &#8216;location&#8217; bar is now back in line with the &#8216;application&#8217; bar but a whitespace is noticeable.</p>
<p><a rel="attachment wp-att-374" href="http://quintessens.wordpress.com/2009/08/07/view-control-messed-up-in-declans-template/bug04/"><img class="alignnone size-full wp-image-374" title="bug04" src="http://quintessens.files.wordpress.com/2009/08/bug04.jpg?w=421&#038;h=219" alt="bug04" width="421" height="219" /></a></p>
<p>In the custom.css you need to overwrite the default styling for h2:</p>
<blockquote><p>.lotusForm h2 {<br />
margin:0px 15px 0px 0px;<br />
}</p></blockquote>
<p>There you have it! You have the styling for a View control back.</p>
<p><a rel="attachment wp-att-375" href="http://quintessens.wordpress.com/2009/08/07/view-control-messed-up-in-declans-template/bugfix2/"><img class="alignnone size-full wp-image-375" title="bugfix2" src="http://quintessens.files.wordpress.com/2009/08/bugfix2.jpg?w=480&#038;h=341" alt="bugfix2" width="480" height="341" /></a></p>
<p>Ps. I rather advice to take a look at examples provided by IBM (maybe the discussion template for 8.5 give help) or does somebody else have a good clean development template available?</p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/quintessens.wordpress.com/369/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/quintessens.wordpress.com/369/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/quintessens.wordpress.com/369/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/quintessens.wordpress.com/369/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/quintessens.wordpress.com/369/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/quintessens.wordpress.com/369/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/quintessens.wordpress.com/369/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/quintessens.wordpress.com/369/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/quintessens.wordpress.com/369/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/quintessens.wordpress.com/369/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=quintessens.wordpress.com&blog=496933&post=369&subd=quintessens&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://quintessens.wordpress.com/2009/08/07/view-control-messed-up-in-declans-template/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/7dd15da2bc16dba12e07a6430940ab11?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">quintessens</media:title>
		</media:content>

		<media:content url="http://quintessens.files.wordpress.com/2009/08/bug01.jpg" medium="image">
			<media:title type="html">bug01</media:title>
		</media:content>

		<media:content url="http://quintessens.files.wordpress.com/2009/08/bugfix.jpg" medium="image">
			<media:title type="html">bugfix</media:title>
		</media:content>

		<media:content url="http://quintessens.files.wordpress.com/2009/08/bug02.jpg" medium="image">
			<media:title type="html">bug02</media:title>
		</media:content>

		<media:content url="http://quintessens.files.wordpress.com/2009/08/bug03.jpg" medium="image">
			<media:title type="html">bug03</media:title>
		</media:content>

		<media:content url="http://quintessens.files.wordpress.com/2009/08/bug04.jpg" medium="image">
			<media:title type="html">bug04</media:title>
		</media:content>

		<media:content url="http://quintessens.files.wordpress.com/2009/08/bugfix2.jpg" medium="image">
			<media:title type="html">bugfix2</media:title>
		</media:content>
	</item>
		<item>
		<title>XPages &#8211; how to add an agent as the source for a script?</title>
		<link>http://quintessens.wordpress.com/2009/08/04/xpages-how-to-add-an-agent-as-the-source-for-a-script/</link>
		<comments>http://quintessens.wordpress.com/2009/08/04/xpages-how-to-add-an-agent-as-the-source-for-a-script/#comments</comments>
		<pubDate>Tue, 04 Aug 2009 10:13:43 +0000</pubDate>
		<dc:creator>Patrick Kwinten</dc:creator>
				<category><![CDATA[XPages]]></category>

		<guid isPermaLink="false">http://quintessens.wordpress.com/?p=363</guid>
		<description><![CDATA[In a previous post I explained how a jQuery script can be used to transform a Notes view into treeview.
At this moment I am trying to implement the same functionality into an Xpage but some questions rise.
In the old-fashioned way you would invoke the script by adding some script tags on your form:
&#60;script src=&#8221;/&#60;Computed Value&#62;/WEBOutputCategoryView?openagent&#38;category=Home&#38;viewname=(LUDocs)&#8221;&#62;&#60;/script&#62;
However [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=quintessens.wordpress.com&blog=496933&post=363&subd=quintessens&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>In a <a href="http://quintessens.wordpress.com/2009/07/28/jquery-treeview-menu-from-notes-view/" target="_self">previous post</a> I explained how a jQuery script can be used to transform a Notes view into treeview.</p>
<p>At this moment I am trying to implement the same functionality into an Xpage but some questions rise.</p>
<p>In the old-fashioned way you would invoke the script by adding some script tags on your form:</p>
<blockquote><p>&lt;script src=&#8221;/&lt;Computed Value&gt;/WEBOutputCategoryView?openagent&amp;category=Home&amp;viewname=(LUDocs)&#8221;&gt;&lt;/script&gt;</p></blockquote>
<p>However if I copy and paste the code on an XPage i get the error message:</p>
<p><a rel="attachment wp-att-364" href="http://quintessens.wordpress.com/2009/08/04/xpages-how-to-add-an-agent-as-the-source-for-a-script/error/"><img class="alignnone size-full" title="error" src="http://quintessens.files.wordpress.com/2009/08/error.png" alt="error" /></a></p>
<blockquote><p>The reference to entity &#8220;category&#8221; must end with the &#8216;;&#8217; delimiter.</p></blockquote>
<p>Has anyone a clue what the exact code should be like?</p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/quintessens.wordpress.com/363/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/quintessens.wordpress.com/363/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/quintessens.wordpress.com/363/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/quintessens.wordpress.com/363/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/quintessens.wordpress.com/363/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/quintessens.wordpress.com/363/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/quintessens.wordpress.com/363/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/quintessens.wordpress.com/363/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/quintessens.wordpress.com/363/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/quintessens.wordpress.com/363/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=quintessens.wordpress.com&blog=496933&post=363&subd=quintessens&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://quintessens.wordpress.com/2009/08/04/xpages-how-to-add-an-agent-as-the-source-for-a-script/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/7dd15da2bc16dba12e07a6430940ab11?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">quintessens</media:title>
		</media:content>

		<media:content url="http://quintessens.files.wordpress.com/2009/08/error.png" medium="image">
			<media:title type="html">error</media:title>
		</media:content>
	</item>
		<item>
		<title>Poverty (again) at IBM Lotus forums</title>
		<link>http://quintessens.wordpress.com/2009/08/03/poverty-again-at-ibm-lotus-forums/</link>
		<comments>http://quintessens.wordpress.com/2009/08/03/poverty-again-at-ibm-lotus-forums/#comments</comments>
		<pubDate>Mon, 03 Aug 2009 10:10:11 +0000</pubDate>
		<dc:creator>Patrick Kwinten</dc:creator>
				<category><![CDATA[IBM]]></category>
		<category><![CDATA[Lotus Notes]]></category>

		<guid isPermaLink="false">http://quintessens.wordpress.com/?p=357</guid>
		<description><![CDATA[I guess it has been discussed and complained before about IBM Lotus but since a week or so my proxy repeats asking my login credentials. I have no idea what is running on the background at IBM Lotus Forums.
When I login I even get the error message:
OpenForm&#38;login
HTTP Web Server: Couldn&#8217;t find design note &#8211; Main+Topic
Select [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=quintessens.wordpress.com&blog=496933&post=357&subd=quintessens&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>I guess it has been discussed and complained before about IBM Lotus but since a week or so my proxy repeats asking my login credentials. I have no idea what is running on the background at IBM Lotus Forums.</p>
<p>When I login I even get the error message:</p>
<blockquote><p>OpenForm&amp;login<br />
HTTP Web Server: Couldn&#8217;t find design note &#8211; Main+Topic</p>
<p>Select a view from the Browse By list, on the right, to return to the forum views.</p></blockquote>
<p>I am trying to create a new topic on the 8.5 forum&#8230;</p>
<p>After all those years of annoyance, it feels awfully cheap still have to locate information this way IBM.</p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/quintessens.wordpress.com/357/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/quintessens.wordpress.com/357/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/quintessens.wordpress.com/357/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/quintessens.wordpress.com/357/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/quintessens.wordpress.com/357/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/quintessens.wordpress.com/357/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/quintessens.wordpress.com/357/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/quintessens.wordpress.com/357/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/quintessens.wordpress.com/357/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/quintessens.wordpress.com/357/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=quintessens.wordpress.com&blog=496933&post=357&subd=quintessens&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://quintessens.wordpress.com/2009/08/03/poverty-again-at-ibm-lotus-forums/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/7dd15da2bc16dba12e07a6430940ab11?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">quintessens</media:title>
		</media:content>
	</item>
		<item>
		<title>XPages &#8211; Converting an existing Domino application</title>
		<link>http://quintessens.wordpress.com/2009/07/31/xpages-converting-an-existing-domino-application/</link>
		<comments>http://quintessens.wordpress.com/2009/07/31/xpages-converting-an-existing-domino-application/#comments</comments>
		<pubDate>Fri, 31 Jul 2009 16:03:09 +0000</pubDate>
		<dc:creator>Patrick Kwinten</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[XPages]]></category>

		<guid isPermaLink="false">http://quintessens.wordpress.com/?p=352</guid>
		<description><![CDATA[I would like t o quote a famous Dutch soccer trainer
Ben jij nou zo dom of ben ik nou zo slim?
Translated into English it would be something like:
Am you so dumb or am I now so smart?
I have read some tutorials about XPages and I have started with upgrading an existing Domino application with XPage [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=quintessens.wordpress.com&blog=496933&post=352&subd=quintessens&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>I would like t o quote a famous Dutch soccer trainer</p>
<blockquote><p><a title="leipe Louis" href="http://www.youtube.com/watch?v=oL8rkZDWj3I" target="_blank">Ben jij nou zo dom of ben ik nou zo slim?</a></p></blockquote>
<p>Translated into English it would be something like:</p>
<blockquote><p>Am you so dumb or am I now so smart?</p></blockquote>
<p>I have read some tutorials about XPages and I have started with upgrading an existing Domino application with XPage technology. Basically I want to display documents with an XPage instead of a web enabled Form.</p>
<p>I have some nice center layered container layout with sections for a header, leftside menu, main and a footer. With a bit of help of  CSS it looks fine. Now I have started to transform the subforms into custom controls and the structure of the Form into an XPage. In stead of DIVs I am using Panels (I should or not?).</p>
<p>First thing I notice that panels in XPage technology only can get a name, when rendering this will be transformed into an ID. I have added my CSS for now in several files, later I will merge them together. For now for each custom control I have a CSS file attached to it.</p>
<p>What is happening is that the CSS get rendered well in Designer but when I look at the XPage in a browser the styling iscompletely gone! If I check in the source I see that all the ID&#8217;s have been modified, so I wonder if my CSS is still valid?</p>
<p>For example the original code:</p>
<p>&lt;xp:panel id=&#8221;headerContainer&#8221;&gt;</p>
<p style="padding-left:30px;">&lt;xp:panel id=&#8221;headerLogo&#8221;&gt;logo&lt;/xp:panel&gt;</p>
<p style="padding-left:30px;">&lt;xp:panel id=&#8221;headerName&#8221;&gt;application name&lt;/xp:panel&gt;</p>
<p style="padding-left:30px;">&lt;xp:panel id=&#8221;headerSearch&#8221;&gt;searchform&lt;/xp:panel&gt;</p>
<p>&lt;/xp:panel&gt;</p>
<p>get&#8217;s rendered as:</p>
<div><span>&lt;<span>div</span><span> <span>id</span>=&#8221;<span>view:_id1:_id2:headerContainer</span>&#8220;</span><span>&gt;<br />
</span></span></div>
<div>
<div>
<div style="padding-left:30px;"><span>&lt;<span>div</span><span> <span>id</span>=&#8221;<span>view:_id1:_id2:headerLogo</span>&#8220;</span><span>&gt;</span><span> logo</span>&lt;/<span>div</span>&gt;</span></div>
</div>
<div>
<div style="padding-left:30px;"><span>&lt;<span>div</span><span> <span>id</span>=&#8221;<span>view:_id1:_id2:headerName</span>&#8220;</span><span>&gt;</span><span> application name</span>&lt;/<span>div</span>&gt;</span></div>
</div>
<div>
<div style="padding-left:30px;"><span>&lt;<span>div</span><span> <span>id</span>=&#8221;<span>view:_id1:_id2:headerSearch</span>&#8220;</span><span>&gt;</span><span> searchform</span>&lt;/<span>div</span>&gt;</span></div>
</div>
</div>
<div><span>&lt;/<span>div</span>&gt;</p>
<p></span></p>
<ul>
<li><span>Uhm, can somebody explain how to correctly code my CSS? (it is being loaded). </span></li>
<li><span>Why have they done this? This makes converting current Domino applications into copy &amp; paste &amp; ready to run XPages enabled applications time consuming.</span></li>
<li><span>I guess the reasoning behind it is not logical for normal web developers so it makes the adaption of Domino harder for them.</span></li>
</ul>
<p>Here how it looks:</p>
<p>In Designer (CSS is working):<br />
<a rel="attachment wp-att-353" href="http://quintessens.wordpress.com/2009/07/31/xpages-converting-an-existing-domino-application/xpage_in_designer/"><img class="alignnone size-medium wp-image-353" title="xpage_in_designer" src="http://quintessens.files.wordpress.com/2009/07/xpage_in_designer.jpg?w=300&#038;h=41" alt="xpage_in_designer" width="300" height="41" /></a></p>
<p>In Firefox:<br />
<a rel="attachment wp-att-354" href="http://quintessens.wordpress.com/2009/07/31/xpages-converting-an-existing-domino-application/xpage_in_firefox/"><img class="alignnone size-full wp-image-354" title="xpage_in_firefox" src="http://quintessens.files.wordpress.com/2009/07/xpage_in_firefox.jpg?w=292&#038;h=164" alt="xpage_in_firefox" width="292" height="164" /></a></div>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/quintessens.wordpress.com/352/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/quintessens.wordpress.com/352/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/quintessens.wordpress.com/352/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/quintessens.wordpress.com/352/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/quintessens.wordpress.com/352/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/quintessens.wordpress.com/352/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/quintessens.wordpress.com/352/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/quintessens.wordpress.com/352/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/quintessens.wordpress.com/352/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/quintessens.wordpress.com/352/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=quintessens.wordpress.com&blog=496933&post=352&subd=quintessens&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://quintessens.wordpress.com/2009/07/31/xpages-converting-an-existing-domino-application/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/7dd15da2bc16dba12e07a6430940ab11?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">quintessens</media:title>
		</media:content>

		<media:content url="http://quintessens.files.wordpress.com/2009/07/xpage_in_designer.jpg?w=300" medium="image">
			<media:title type="html">xpage_in_designer</media:title>
		</media:content>

		<media:content url="http://quintessens.files.wordpress.com/2009/07/xpage_in_firefox.jpg" medium="image">
			<media:title type="html">xpage_in_firefox</media:title>
		</media:content>
	</item>
		<item>
		<title>jQuery TreeView Menu from Notes View</title>
		<link>http://quintessens.wordpress.com/2009/07/28/jquery-treeview-menu-from-notes-view/</link>
		<comments>http://quintessens.wordpress.com/2009/07/28/jquery-treeview-menu-from-notes-view/#comments</comments>
		<pubDate>Tue, 28 Jul 2009 11:49:36 +0000</pubDate>
		<dc:creator>Patrick Kwinten</dc:creator>
				<category><![CDATA[Agent]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[LotusScript]]></category>
		<category><![CDATA[Show N Tell Thursday]]></category>

		<guid isPermaLink="false">http://quintessens.wordpress.com/?p=341</guid>
		<description><![CDATA[I was looking for a way to get a web publishing toolkit in Notes away from displaying documents in a frameset.
The frameset consists of several frames:

a header section
a leftside navigation section
a main or content section

The reason why a frameset is used because the leftside navigation is populated from documents in a Notes View.  This navigator [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=quintessens.wordpress.com&blog=496933&post=341&subd=quintessens&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>I was looking for a way to get a web publishing toolkit in Notes away from displaying documents in a frameset.</p>
<p>The frameset consists of several frames:</p>
<ul>
<li>a header section</li>
<li>a leftside navigation section</li>
<li>a main or content section</li>
</ul>
<p>The reason why a frameset is used because the leftside navigation is populated from documents in a Notes View.  This navigator would be collapsed again every time it would be re-loaded again.  It is also build by an agent that generates XML which needs to be transformed in the browser.</p>
<p>Here is how it looks today:</p>
<p><a rel="attachment wp-att-342" href="http://quintessens.wordpress.com/2009/07/28/jquery-treeview-menu-from-notes-view/nav_current/"><img class="alignnone size-full wp-image-342" title="nav_current" src="http://quintessens.files.wordpress.com/2009/07/nav_current.jpg?w=156&#038;h=153" alt="nav_current" width="156" height="153" /></a></p>
<p>Some searching on the web brought me to these documents:</p>
<p><a title="jump to site" href="http://www.dynamicdrive.com/dynamicindex1/treeview/index.htm" target="_blank">jQuery TreeView Menu</a> and a <a title="jump to the blogpost" href="http://www.datatribesoftwerks.com/A55C1C/DatatribeBlog.nsf/archive/20060224-109723" target="_blank">Show &#8216;n Tell Thursday blogpost</a>. Combining the 2 topics would solve my problem since the jQuery TreeView allows to re-open the treemenu by the location specified for a menu item!</p>
<p>( I will add the SnTT tag to this document to honour the contributors, even when it is now still Thursday)</p>
<p>I soon discovered that the code for the Tree Convertor from Datatribe works with documents in the same level, meaning that documents with a response hierarchy will not be supported because you do not use categorized columns in your View. Nevertheless a little trial and error and rewriting the original code resulted in the following Notes View presented as a tree:</p>
<p><a rel="attachment wp-att-343" href="http://quintessens.wordpress.com/2009/07/28/jquery-treeview-menu-from-notes-view/nav_new/"><img class="alignnone size-full wp-image-343" title="nav_new" src="http://quintessens.files.wordpress.com/2009/07/nav_new.jpg?w=178&#038;h=353" alt="nav_new" width="178" height="353" /></a></p>
<p>Note: in the example I have already applied some styling.</p>
<p>In this View each &#8216;Category&#8217; is a document containing one or more response documents. The highlighted (red) item is the currently opened document.</p>
<p><strong>So how do you get there?</strong></p>
<ul>
<li>Create a Notes View that displays your documents as you want them to be presented in the tree. In the Datatribe example this View is called (LUDocs).</li>
</ul>
<p><a rel="attachment wp-att-344" href="http://quintessens.wordpress.com/2009/07/28/jquery-treeview-menu-from-notes-view/nav_notesview/"><img class="alignnone size-full wp-image-344" title="nav_notesview" src="http://quintessens.files.wordpress.com/2009/07/nav_notesview.jpg?w=510&#038;h=374" alt="nav_notesview" width="510" height="374" /></a></p>
<ul>
<li>Upload all the fields you need for the jQuery TreeView (CSS, Images, JS Libraries) and reference to them in the Head section of your Document Form:</li>
</ul>
<p><a rel="attachment wp-att-345" href="http://quintessens.wordpress.com/2009/07/28/jquery-treeview-menu-from-notes-view/nav_header01/"><img class="alignnone size-full wp-image-345" title="nav_header01" src="http://quintessens.files.wordpress.com/2009/07/nav_header01.jpg?w=532&#038;h=137" alt="nav_header01" width="532" height="137" /></a></p>
<ul>
<li>Add the fuction that will transform the HTML list into a Tree View structure.</li>
</ul>
<p><a rel="attachment wp-att-346" href="http://quintessens.wordpress.com/2009/07/28/jquery-treeview-menu-from-notes-view/nav_header02/"><img class="alignnone size-full wp-image-346" title="nav_header02" src="http://quintessens.files.wordpress.com/2009/07/nav_header02.jpg?w=290&#038;h=200" alt="nav_header02" width="290" height="200" /></a></p>
<p>Note:  -the persist: &#8220;location&#8221;- parameter ensures that the tree will be expanded by the item / document opened by default.</p>
<ul>
<li>On the place where you want to display the TreeView add the following code:</li>
</ul>
<p><a rel="attachment wp-att-347" href="http://quintessens.wordpress.com/2009/07/28/jquery-treeview-menu-from-notes-view/nav_new_code/"><img class="alignnone size-full wp-image-347" title="nav_new_code" src="http://quintessens.files.wordpress.com/2009/07/nav_new_code.jpg?w=700&#038;h=90" alt="nav_new_code" width="700" height="90" /></a></p>
<p>As you can see a script is here called which uses an Agent to collect the data from a Notes View in an HTML format ( ul and li list format). I had to make come changes to the original code, since I am using a View that support the display of response documents in a hierarchy.</p>
<blockquote><p>Sub Initialize<br />
&#8216;&#8212;This agent is designed to ouput the required javascript to produce a nested HTML list<br />
On Error Goto errorhandler</p>
<p>Dim s As New notessession<br />
Dim db  As NotesDatabase<br />
Dim doc As NotesDocument</p>
<p>&#8216;&#8211;Category passed in via URL<br />
Dim inCategory As String</p>
<p>&#8216;&#8212;View name passed in via URL<br />
Dim viewName As String</p>
<p>&#8216;&#8212;Display Category ?<br />
Dim displaycategory As String</p>
<p>&#8216;&#8212;Document in the view<br />
Dim tmpdoc As notesdocument</p>
<p>&#8216;&#8211;Category Level<br />
Dim level As Integer<br />
&#8216;&#8212;Current Category level<br />
Dim currentLevel As Integer</p>
<p>Dim view As NotesView<br />
Dim i As Integer<br />
Dim JavascriptOutput As String</p>
<p>&#8216;&#8212;Due text size limits we need to hold the ouput on 1 or more temporay notes items (never saved)<br />
Dim fieldCounter As Integer<br />
Dim holdingField As Notesitem</p>
<p>Set doc=s.documentcontext</p>
<p>&#8216;&#8211;Set up holding field<br />
fieldCounter=1<br />
Set holdingField=New notesitem(doc,&#8221;HoldingField_&#8221; &amp; fieldCounter,&#8221;")</p>
<p>inCategory=getqueryparam(doc.query_string(0),&#8221;category&#8221;,&#8221;")<br />
viewName=getqueryparam(doc.query_string(0),&#8221;viewname&#8221;,&#8221;")<br />
displaycategory=getqueryparam(doc.query_string(0),&#8221;displaycategory&#8221;,&#8221;")</p>
<p>Set db=s.currentdatabase</p>
<p>level=0<br />
JavascriptOutput=&#8221;"</p>
<p>If displaycategory=&#8221;false&#8221; Then</p>
<p>Else<br />
If inCategory=&#8221;" Then<br />
JavascriptOutput=JavascriptOutput &amp; |&lt;h3&gt;All Documents&lt;/h3&gt;|<br />
Else<br />
JavascriptOutput=JavascriptOutput &amp; |&lt;h3&gt;| &amp; inCategory &amp; |&lt;/h3&gt;|<br />
End If<br />
End If</p>
<p>JavascriptOutput=JavascriptOutput &amp; |&lt;ul id=&#8221;tree&#8221;&gt;|</p>
<p>&#8216;&#8212;-View could be passed in via QueryString to allow a more generic agent<br />
Set view=db.GetView(viewName)</p>
<p>&#8216;&#8212;If view is not found handle it &#8211; as the view name is passed in this could be missing<br />
If view Is Nothing Then<br />
Print |Content-Type:text/plain|<br />
Print |document.write(&#8216;Error &#8211; View not found -| &amp; viewName &amp; |&#8217;)|<br />
Goto getout<br />
End If</p>
<p>Dim entry As NotesViewEntry<br />
Dim nav As NotesViewNavigator<br />
If inCategory=&#8221;" Then<br />
Set nav = view.CreateViewNav<br />
Else<br />
Set nav = view.CreateViewNav<br />
End If<br />
Set entry=nav.GetFirst</p>
<p>Dim edoc As NotesDocument<br />
Dim childdoc As NotesDocument<br />
Dim coll As notesdocumentcollection</p>
<p>While Not(entry Is Nothing)</p>
<p>Set edoc = entry.Document<br />
Set coll = edoc.responses</p>
<p>If coll.Count &gt; 0 Then<br />
currentLevel=entry.ColumnIndentLevel+1<br />
Select Case (entry.ColumnIndentLevel+1)<br />
Case level<br />
%REM<br />
JavascriptOutput=JavascriptOutput &amp; |&lt;/ul&gt;&lt;/li&gt;|<br />
%END REM<br />
Case Is&lt;level<br />
For i=2 To ((level)-entry.ColumnIndentLevel)<br />
JavascriptOutput=JavascriptOutput &amp; |&lt;/ul&gt;&lt;/li&gt;|<br />
Next<br />
End Select</p>
<p>&#8216;&#8211;Update level<br />
level=entry.ColumnIndentLevel+1</p>
<p>&#8216;&#8211;Propercase it<br />
JavascriptOutput=JavascriptOutput &amp; |&lt;li&gt;&lt;strong&gt;&lt;a href=&#8221;http://| &amp; returnCommonServer() &amp; |/| &amp; swapchars(db.FilePath,&#8221;\&#8221;,&#8221;/&#8221;) &amp; |/0/| &amp; entry.UniversalID &amp; |&#8221;&gt;| &amp; edoc.Tx_Document_Title(0) &amp;|&lt;/a&gt;&lt;/strong&gt;&lt;ul&gt;|<br />
Else<br />
&#8216;&#8212;At document<br />
currentLevel=entry.ColumnIndentLevel+1<br />
Select Case (entry.ColumnIndentLevel+1)<br />
Case level<br />
%REM<br />
JavascriptOutput=JavascriptOutput &amp; |&lt;/ul&gt;&lt;/li&gt;|<br />
%END REM<br />
Case Is&lt;level<br />
For i=2 To ((level)-entry.ColumnIndentLevel)<br />
JavascriptOutput=JavascriptOutput &amp; |&lt;/ul&gt;&lt;/li&gt;|<br />
Next<br />
End Select</p>
<p>&#8216;&#8211;Update level<br />
level=entry.ColumnIndentLevel+1</p>
<p>Set tmpdoc=db.GetDocumentByUNID(entry.UniversalID)<br />
Set tmpdoc=entry.Document<br />
If tmpdoc.Tx_Document_Title(0)&lt;&gt;&#8221;" Then<br />
JavascriptOutput=JavascriptOutput &amp; |&lt;li&gt;&lt;a href=&#8221;http://| &amp; returnCommonServer() &amp; |/| &amp; swapchars(db.FilePath,&#8221;\&#8221;,&#8221;/&#8221;) &amp; |/0/| &amp; entry.UniversalID &amp; |&#8221;&gt;| &amp; fn_escape(Cstr(tmpdoc.Tx_Document_Title(0))) &amp; |&lt;/a&gt;&lt;/li&gt;|<br />
End If<br />
End If</p>
<p>&#8216;&#8211;Check for field size<br />
Call holdingfield.appendtotextlist(JavascriptOutput)<br />
Call monitorFieldSize(doc ,fieldCounter,holdingField)<br />
JavascriptOutput=&#8221;"<br />
Set entry=nav.GetNext(entry)<br />
Wend</p>
<p>&#8216;&#8211;Now we have finished we need to close the remaining tags<br />
For i=1 To (currentLevel-1)<br />
JavascriptOutput=JavascriptOutput &amp; |&lt;/ul&gt;&lt;/li&gt;|<br />
Next</p>
<p>Call holdingfield.appendtotextlist(JavascriptOutput)</p>
<p>&#8216;&#8212;-Now output Javascript</p>
<p>Print |Content-Type:text/plain|<br />
Print |document.write(&#8216;\n&#8217;+|<br />
If fieldcounter=1 Then<br />
Forall items In doc.GetItemValue(&#8220;HoldingField_1&#8243;)<br />
Print|&#8217;| &amp;  items &amp; |\n&#8217;+|<br />
End Forall<br />
Else<br />
For i=2 To fieldcounter<br />
Forall items In doc.GetItemValue(&#8220;HoldingField_&#8221; &amp; i)<br />
Print|&#8217;| &amp; items &amp;  |\n&#8217;+|<br />
End Forall<br />
Next<br />
Forall items In doc.GetItemValue(&#8220;HoldingField_1&#8243;)<br />
Print|&#8217;| &amp; items  |\n&#8217;+|<br />
End Forall<br />
End If<br />
Print |&#8217;\n&#8217;)|</p>
<p>getout:<br />
Exit Sub</p>
<p>errorhandler:</p>
<p>&#8216;&#8212;As this is an agent that expects to return JavaScript we will return the error message in Javascript<br />
Print |Content-Type:text/plain|<br />
Print |document.write(&#8216;Error &#8211; | &amp; Error &amp; | &#8211; | &amp; Err &amp; |&#8217;)|</p>
<p>Resume getout</p>
<p>End Sub</p></blockquote>
<p>That is about it! Here is a better look of the result:</p>
<p><a rel="attachment wp-att-348" href="http://quintessens.wordpress.com/2009/07/28/jquery-treeview-menu-from-notes-view/nav_result/"><img class="alignnone size-medium wp-image-348" title="nav_result" src="http://quintessens.files.wordpress.com/2009/07/nav_result.jpg?w=300&#038;h=219" alt="nav_result" width="300" height="219" /></a></p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/quintessens.wordpress.com/341/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/quintessens.wordpress.com/341/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/quintessens.wordpress.com/341/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/quintessens.wordpress.com/341/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/quintessens.wordpress.com/341/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/quintessens.wordpress.com/341/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/quintessens.wordpress.com/341/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/quintessens.wordpress.com/341/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/quintessens.wordpress.com/341/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/quintessens.wordpress.com/341/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=quintessens.wordpress.com&blog=496933&post=341&subd=quintessens&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://quintessens.wordpress.com/2009/07/28/jquery-treeview-menu-from-notes-view/feed/</wfw:commentRss>
		<slash:comments>10</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/7dd15da2bc16dba12e07a6430940ab11?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">quintessens</media:title>
		</media:content>

		<media:content url="http://quintessens.files.wordpress.com/2009/07/nav_current.jpg" medium="image">
			<media:title type="html">nav_current</media:title>
		</media:content>

		<media:content url="http://quintessens.files.wordpress.com/2009/07/nav_new.jpg" medium="image">
			<media:title type="html">nav_new</media:title>
		</media:content>

		<media:content url="http://quintessens.files.wordpress.com/2009/07/nav_notesview.jpg" medium="image">
			<media:title type="html">nav_notesview</media:title>
		</media:content>

		<media:content url="http://quintessens.files.wordpress.com/2009/07/nav_header01.jpg" medium="image">
			<media:title type="html">nav_header01</media:title>
		</media:content>

		<media:content url="http://quintessens.files.wordpress.com/2009/07/nav_header02.jpg" medium="image">
			<media:title type="html">nav_header02</media:title>
		</media:content>

		<media:content url="http://quintessens.files.wordpress.com/2009/07/nav_new_code.jpg" medium="image">
			<media:title type="html">nav_new_code</media:title>
		</media:content>

		<media:content url="http://quintessens.files.wordpress.com/2009/07/nav_result.jpg?w=300" medium="image">
			<media:title type="html">nav_result</media:title>
		</media:content>
	</item>
		<item>
		<title>Computed text as passthru HTML, containing a Notes link</title>
		<link>http://quintessens.wordpress.com/2009/07/21/computed-text-as-passthru-html-containing-a-notes-link/</link>
		<comments>http://quintessens.wordpress.com/2009/07/21/computed-text-as-passthru-html-containing-a-notes-link/#comments</comments>
		<pubDate>Tue, 21 Jul 2009 10:46:42 +0000</pubDate>
		<dc:creator>Patrick Kwinten</dc:creator>
				<category><![CDATA[HTML]]></category>

		<guid isPermaLink="false">http://quintessens.wordpress.com/?p=338</guid>
		<description><![CDATA[Uhm, I have a Page for the Notes client where I want to display a list with references to documents in the same DB. The list is computed text and collects the data from a View. I have set the text as passthru html and enabled the render passthru HTML in Notes.
Here is the formula [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=quintessens.wordpress.com&blog=496933&post=338&subd=quintessens&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Uhm, I have a Page for the Notes client where I want to display a list with references to documents in the same DB. The list is computed text and collects the data from a View. I have set the text as passthru html and enabled the render passthru HTML in Notes.</p>
<p>Here is the formula I am using in the View column:</p>
<p><em>@Text(@Date(@Created)) + &#8221; &#8211; &#8221; + Tx_DocTitle + &#8221; &lt;a href=\&#8221;notes:///__&#8221;  + @Replacesubstring(@Text(@ReplicaID);&#8221;:&#8221;;&#8221;") + &#8220;/0/&#8221; + @Text(@DocumentUniqueID) + &#8220;?OpenDocument\&#8221;&gt;link&lt;/a&gt;&#8221;</em></p>
<p>Information about the structure I have taken from this site:</p>
<p>http://www.nsftools.com/tips/NotesTips.htm  -&gt; section: Notes Client Command-Line Options</p>
<p>In the Notes client the links just don&#8217;t work, however if I open the Page in a browser they work perfectly.</p>
<ul>
<li><span style="color:#339966;"><strong>Does html references in the Notes client just don&#8217;t work?</strong></span></li>
</ul>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/quintessens.wordpress.com/338/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/quintessens.wordpress.com/338/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/quintessens.wordpress.com/338/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/quintessens.wordpress.com/338/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/quintessens.wordpress.com/338/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/quintessens.wordpress.com/338/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/quintessens.wordpress.com/338/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/quintessens.wordpress.com/338/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/quintessens.wordpress.com/338/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/quintessens.wordpress.com/338/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=quintessens.wordpress.com&blog=496933&post=338&subd=quintessens&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://quintessens.wordpress.com/2009/07/21/computed-text-as-passthru-html-containing-a-notes-link/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/7dd15da2bc16dba12e07a6430940ab11?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">quintessens</media:title>
		</media:content>
	</item>
		<item>
		<title>Notes Development Icon Library</title>
		<link>http://quintessens.wordpress.com/2009/07/20/notes-development-icon-library/</link>
		<comments>http://quintessens.wordpress.com/2009/07/20/notes-development-icon-library/#comments</comments>
		<pubDate>Mon, 20 Jul 2009 10:08:56 +0000</pubDate>
		<dc:creator>Patrick Kwinten</dc:creator>
				<category><![CDATA[Applications]]></category>

		<guid isPermaLink="false">http://quintessens.wordpress.com/?p=336</guid>
		<description><![CDATA[For distributing database icons we use a Notes database that is dated from 1999. As you understand, this database is pretty much out of date / old fashioned.  Since the database icon in Notes 8 is still crappy 16 colors (I have no idea how it will be in Notes 8.5.x) I do not foresee [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=quintessens.wordpress.com&blog=496933&post=336&subd=quintessens&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>For distributing database icons we use a Notes database that is dated from 1999. As you understand, this database is pretty much out of date / old fashioned.  Since the database icon in Notes 8 is still crappy 16 colors (I have no idea how it will be in Notes 8.5.x) I do not foresee that searching or creating new 16 color icons is so worth the effort.</p>
<p>Nevertheless I am wondering if you have a collection of 16 color database icons that is worth sharing?</p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/quintessens.wordpress.com/336/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/quintessens.wordpress.com/336/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/quintessens.wordpress.com/336/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/quintessens.wordpress.com/336/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/quintessens.wordpress.com/336/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/quintessens.wordpress.com/336/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/quintessens.wordpress.com/336/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/quintessens.wordpress.com/336/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/quintessens.wordpress.com/336/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/quintessens.wordpress.com/336/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=quintessens.wordpress.com&blog=496933&post=336&subd=quintessens&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://quintessens.wordpress.com/2009/07/20/notes-development-icon-library/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/7dd15da2bc16dba12e07a6430940ab11?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">quintessens</media:title>
		</media:content>
	</item>
		<item>
		<title>Best practices for setting up an update site</title>
		<link>http://quintessens.wordpress.com/2009/07/14/best-practices-for-setting-up-an-update-site/</link>
		<comments>http://quintessens.wordpress.com/2009/07/14/best-practices-for-setting-up-an-update-site/#comments</comments>
		<pubDate>Tue, 14 Jul 2009 13:56:45 +0000</pubDate>
		<dc:creator>Patrick Kwinten</dc:creator>
		
		<guid isPermaLink="false">http://quintessens.wordpress.com/?p=333</guid>
		<description><![CDATA[We haven&#8217;t distributed any plug-ins or components via an update site but what are your best practices or where can I find them on the web?
The only related topic I could easily find is this one.
Questions of interest is:

how to handle versioning?
how to collect statistics? (who has installed what, how many products have been installed)
how [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=quintessens.wordpress.com&blog=496933&post=333&subd=quintessens&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>We haven&#8217;t distributed any plug-ins or components via an update site but what are your best practices or where can I find them on the web?</p>
<p>The only related topic I could easily find <a href="http://www.ibm.com/developerworks/lotus/library/sametime-updates/" target="_blank">is this one</a>.</p>
<p>Questions of interest is:</p>
<ul>
<li>how to handle versioning?</li>
<li>how to collect statistics? (who has installed what, how many products have been installed)</li>
<li>how to connect an installation of a product to a billing system?</li>
</ul>
<p>Thanks in advance for your guidance!</p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/quintessens.wordpress.com/333/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/quintessens.wordpress.com/333/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/quintessens.wordpress.com/333/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/quintessens.wordpress.com/333/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/quintessens.wordpress.com/333/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/quintessens.wordpress.com/333/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/quintessens.wordpress.com/333/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/quintessens.wordpress.com/333/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/quintessens.wordpress.com/333/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/quintessens.wordpress.com/333/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=quintessens.wordpress.com&blog=496933&post=333&subd=quintessens&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://quintessens.wordpress.com/2009/07/14/best-practices-for-setting-up-an-update-site/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/7dd15da2bc16dba12e07a6430940ab11?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">quintessens</media:title>
		</media:content>
	</item>
	</channel>
</rss>