<?xml version="1.0" encoding="UTF-8" ?>
<rss version="2.0"
 xmlns:dc="http://purl.org/dc/elements/1.1/"
 xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
 xmlns:admin="http://webns.net/mvcb/"
 xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
 xmlns:content="http://purl.org/rss/1.0/modules/content/"
 xmlns:wfw="http://wellformedweb.org/CommentAPI/">
<channel><title>YouAtNotes XPages Wiki</title><description></description><link>http:/www.youatnotes.de/web/youatnotes/wiki-xpages.nsf</link><language>en-us</language><lastBuildDate>Thu, 10 Jun 2010 21:09:43 +0200</lastBuildDate>
<item><title>Welcome</title><pubDate>Mon, 6 Apr 2009 11:38:08 +0200</pubDate><description><![CDATA[ ==Welcome to the YouAtNotes XPages Wiki== [[http://www.youatnotes.de|YouAtNotes] ] uses this Wiki to document numerous tips and tricks about XPages development. We use this Wiki in our development, but we decided to publish our findings so everyone can participate. The target audience are ...]]></description><link>http:/www.youatnotes.de/web/youatnotes/wiki-xpages.nsf/dx/Welcome</link><dc:subject></dc:subject><dc:creator>Julian Buss</dc:creator><comments>http:/www.youatnotes.de/web/youatnotes/wiki-xpages.nsf/dx/Welcome?opendocument&amp;comments</comments><guid isPermaLink="true">http:/www.youatnotes.de/web/youatnotes/wiki-xpages.nsf/dx/Welcome</guid><wfw:commentRss> http:/www.youatnotes.de/web/youatnotes/wiki-xpages.nsf/dxcomments/Welcome</wfw:commentRss><wfw:comment> http:/www.youatnotes.de/web/youatnotes/wiki-xpages.nsf/dx/Welcome?opendocument&amp;comments</wfw:comment></item>
<item><title>Work with documents and fields on the XPage</title><pubDate>Mon, 6 Apr 2009 13:12:07 +0200</pubDate><description><![CDATA[ ==Get and set a field on the XPage== ===Server JS===
{code:}
getComponent("elementName").getValue(); getComponent("elementName").setValue("something"); {code} Note: you cannot access or set fields with visible=false. If you want to work with a field, but don't want to display it, give the field a ...]]></description><link>http:/www.youatnotes.de/web/youatnotes/wiki-xpages.nsf/dx/Work_with_documents_and_fields_on_the_XPage</link><dc:subject>Server JavaScript</dc:subject><dc:creator>Julian Buss</dc:creator><comments>http:/www.youatnotes.de/web/youatnotes/wiki-xpages.nsf/dx/Work_with_documents_and_fields_on_the_XPage?opendocument&amp;comments</comments><guid isPermaLink="true">http:/www.youatnotes.de/web/youatnotes/wiki-xpages.nsf/dx/Work_with_documents_and_fields_on_the_XPage</guid><wfw:commentRss> http:/www.youatnotes.de/web/youatnotes/wiki-xpages.nsf/dxcomments/Work_with_documents_and_fields_on_the_XPage</wfw:commentRss><wfw:comment> http:/www.youatnotes.de/web/youatnotes/wiki-xpages.nsf/dx/Work_with_documents_and_fields_on_the_XPage?opendocument&amp;comments</wfw:comment></item>
<item><title>Work with URLs</title><pubDate>Fri, 10 Apr 2009 18:06:10 +0200</pubDate><description><![CDATA[ Here is a list of useful URLs for XPages and Domino web development. ==XPages URLs== $$OpenDominoDocument.xsp?id=<UNID> Opens the document with the given UNID. Tries to find a suitable XPage for opening by using these rules: - Check if the document's form has the "open in XPage property"
- Check ...]]></description><link>http:/www.youatnotes.de/web/youatnotes/wiki-xpages.nsf/dx/Work_with_URLs</link><dc:subject>UI</dc:subject><dc:creator>Julian Buss</dc:creator><comments>http:/www.youatnotes.de/web/youatnotes/wiki-xpages.nsf/dx/Work_with_URLs?opendocument&amp;comments</comments><guid isPermaLink="true">http:/www.youatnotes.de/web/youatnotes/wiki-xpages.nsf/dx/Work_with_URLs</guid><wfw:commentRss> http:/www.youatnotes.de/web/youatnotes/wiki-xpages.nsf/dxcomments/Work_with_URLs</wfw:commentRss><wfw:comment> http:/www.youatnotes.de/web/youatnotes/wiki-xpages.nsf/dx/Work_with_URLs?opendocument&amp;comments</wfw:comment></item>
[Replication or Save Conflict]<item><title>Browser compatibility</title><pubDate>Mon, 18 May 2009 20:48:44 +0200</pubDate><description><![CDATA[ ==Internet Explorer 8== IE 8 is supported since Domino 8.5.1. You can force IE8 to act like IE7 by using this code in beforeRenderResponse event: {code:} // first option uses compatibility mode, second option too but stronger
// X-UA-Compatible: IE=7
// X-UA-Compatible: IE=EmulateIE7
if ...]]></description><link>http:/www.youatnotes.de/web/youatnotes/wiki-xpages.nsf/dx/Browser_compatibility</link><dc:subject>Getting ready for production</dc:subject><dc:creator>Julian Buss</dc:creator><comments>http:/www.youatnotes.de/web/youatnotes/wiki-xpages.nsf/dx/Browser_compatibility?opendocument&amp;comments</comments><guid isPermaLink="true">http:/www.youatnotes.de/web/youatnotes/wiki-xpages.nsf/dx/Browser_compatibility</guid><wfw:commentRss> http:/www.youatnotes.de/web/youatnotes/wiki-xpages.nsf/dxcomments/Browser_compatibility</wfw:commentRss><wfw:comment> http:/www.youatnotes.de/web/youatnotes/wiki-xpages.nsf/dx/Browser_compatibility?opendocument&amp;comments</wfw:comment></item>
<item><title>Memory Usage and Performance</title><pubDate>Thu, 9 Jul 2009 13:08:16 +0200</pubDate><description><![CDATA[ A collection of tipps for optimizing memory usage and performance for a XPage application. Most of them taken from Steve Castledine . ==Increasing the possible workload of the server== 
XPages are using Java in the background, and the amount of memory Java can consume in the Domino server is ...]]></description><link>http:/www.youatnotes.de/web/youatnotes/wiki-xpages.nsf/dx/Memory_Usage_and_Performance</link><dc:subject>Getting ready for production</dc:subject><dc:creator>Julian Buss</dc:creator><comments>http:/www.youatnotes.de/web/youatnotes/wiki-xpages.nsf/dx/Memory_Usage_and_Performance?opendocument&amp;comments</comments><guid isPermaLink="true">http:/www.youatnotes.de/web/youatnotes/wiki-xpages.nsf/dx/Memory_Usage_and_Performance</guid><wfw:commentRss> http:/www.youatnotes.de/web/youatnotes/wiki-xpages.nsf/dxcomments/Memory_Usage_and_Performance</wfw:commentRss><wfw:comment> http:/www.youatnotes.de/web/youatnotes/wiki-xpages.nsf/dx/Memory_Usage_and_Performance?opendocument&amp;comments</wfw:comment></item>
<item><title>Developing for an iPhone</title><pubDate>Wed, 8 Jul 2009 08:30:16 +0200</pubDate><description><![CDATA[ ==Tell the iPhone to use a fixed screen size== Found by Mark Hughes. <pre> <meta name="viewport" content="width=320; initial-scale=1.0; maximum-scale=1.0; user-scalable=0;" />
</pre> == iPhone example == By Mark Hughes, see ...]]></description><link>http:/www.youatnotes.de/web/youatnotes/wiki-xpages.nsf/dx/Developing_for_an_iPhone</link><dc:subject>Mobile</dc:subject><dc:creator>Julian Buss</dc:creator><comments>http:/www.youatnotes.de/web/youatnotes/wiki-xpages.nsf/dx/Developing_for_an_iPhone?opendocument&amp;comments</comments><guid isPermaLink="true">http:/www.youatnotes.de/web/youatnotes/wiki-xpages.nsf/dx/Developing_for_an_iPhone</guid><wfw:commentRss> http:/www.youatnotes.de/web/youatnotes/wiki-xpages.nsf/dxcomments/Developing_for_an_iPhone</wfw:commentRss><wfw:comment> http:/www.youatnotes.de/web/youatnotes/wiki-xpages.nsf/dx/Developing_for_an_iPhone?opendocument&amp;comments</wfw:comment></item>
<item><title>Work with views</title><pubDate>Mon, 6 Apr 2009 12:12:05 +0200</pubDate><description><![CDATA[ ==DbColumn and DbLookup with result as guaranteed array and with a cache== @DbLookup has the issue that it returns a string when it found exactly one result, and an array when it found multiple results. That means after each @DbLookup you have to check if your result is a string or an array if you ...]]></description><link>http:/www.youatnotes.de/web/youatnotes/wiki-xpages.nsf/dx/Work_with_views</link><dc:subject>UI</dc:subject><dc:creator>Julian Buss</dc:creator><comments>http:/www.youatnotes.de/web/youatnotes/wiki-xpages.nsf/dx/Work_with_views?opendocument&amp;comments</comments><guid isPermaLink="true">http:/www.youatnotes.de/web/youatnotes/wiki-xpages.nsf/dx/Work_with_views</guid><wfw:commentRss> http:/www.youatnotes.de/web/youatnotes/wiki-xpages.nsf/dxcomments/Work_with_views</wfw:commentRss><wfw:comment> http:/www.youatnotes.de/web/youatnotes/wiki-xpages.nsf/dx/Work_with_views?opendocument&amp;comments</wfw:comment></item>
<item><title>Work with strings</title><pubDate>Fri, 7 May 2010 09:55:15 +0200</pubDate><description><![CDATA[ ==Simple encryption/decryption== [[http://dontpanic82.blogspot.com/2010/05/xpages-simple-string-encrypterdecrypter.html|Found by Tommy Valand] {code:} function StringEncrypter( encryptionScheme:String, encryptionKey:String ){
 try{
 encryptionScheme = encryptionScheme || ...]]></description><link>http:/www.youatnotes.de/web/youatnotes/wiki-xpages.nsf/dx/Work_with_strings</link><dc:subject></dc:subject><dc:creator>Julian Buss</dc:creator><comments>http:/www.youatnotes.de/web/youatnotes/wiki-xpages.nsf/dx/Work_with_strings?opendocument&amp;comments</comments><guid isPermaLink="true">http:/www.youatnotes.de/web/youatnotes/wiki-xpages.nsf/dx/Work_with_strings</guid><wfw:commentRss> http:/www.youatnotes.de/web/youatnotes/wiki-xpages.nsf/dxcomments/Work_with_strings</wfw:commentRss><wfw:comment> http:/www.youatnotes.de/web/youatnotes/wiki-xpages.nsf/dx/Work_with_strings?opendocument&amp;comments</wfw:comment></item>
<item><title>Work with agents</title><pubDate>Thu, 23 Apr 2009 14:09:34 +0200</pubDate><description><![CDATA[ ==Running an agent== You can run any LotusScript or Java agent using this: {code:} var agent=database.getAgent("myagent"); agent.run(currentDocument.getNoteID()); {code} In the agent you get the noteID (not the UniversalID) and get a handle to the current document as follows: {code:} Dim session ...]]></description><link>http:/www.youatnotes.de/web/youatnotes/wiki-xpages.nsf/dx/Work_with_agents</link><dc:subject></dc:subject><dc:creator>Anonymous</dc:creator><comments>http:/www.youatnotes.de/web/youatnotes/wiki-xpages.nsf/dx/Work_with_agents?opendocument&amp;comments</comments><guid isPermaLink="true">http:/www.youatnotes.de/web/youatnotes/wiki-xpages.nsf/dx/Work_with_agents</guid><wfw:commentRss> http:/www.youatnotes.de/web/youatnotes/wiki-xpages.nsf/dxcomments/Work_with_agents</wfw:commentRss><wfw:comment> http:/www.youatnotes.de/web/youatnotes/wiki-xpages.nsf/dx/Work_with_agents?opendocument&amp;comments</wfw:comment></item>

</channel></rss>
