<?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 - the useful resource for IBM Lotus Domino XPages development | Categorized Content</title><description></description><link>http:/www.youatnotes.de/web/youatnotes/wiki-xpages.nsf</link><language>en-us</language><lastBuildDate>Sun, 6 Dec 2009 11:45:55 +0200</lastBuildDate>
<item><title>Work with relational databases</title><pubDate>Thu, 10 Nov 2011 17:41:12 +0200</pubDate><description><![CDATA[ Since Domino 8.5.3 it's possible to access relational databases directly from XPages. See [[http://www.bleedyellow.com/blogs/iLotusDomino/entry/my_journey_into_domino_8_5_3_and_relational_database_access_from_xpages?lang=en|this article from Amy K. Hoerle]] for details. In short: * Make sure ...]]></description><link>http:/www.youatnotes.de/web/youatnotes/wiki-xpages.nsf/dx/Work_with_relational_databases</link><dc:subject>Server%20JavaScript</dc:subject><dc:creator>Julian Buss</dc:creator><comments>http:/www.youatnotes.de/web/youatnotes/wiki-xpages.nsf/dx/Work_with_relational_databases?opendocument&amp;comments</comments><guid isPermaLink="true">http:/www.youatnotes.de/web/youatnotes/wiki-xpages.nsf/dx/Work_with_relational_databases</guid><wfw:commentRss> http:/www.youatnotes.de/web/youatnotes/wiki-xpages.nsf/dxcomments/Work_with_relational_databases</wfw:commentRss><wfw:comment> http:/www.youatnotes.de/web/youatnotes/wiki-xpages.nsf/dx/Work_with_relational_databases?opendocument&amp;comments</wfw:comment></item>
<item><title>How to use object oriented server side javascript</title><pubDate>Wed, 6 Jan 2010 13:53:35 +0200</pubDate><description><![CDATA[ This is a short howto for people who know how to code object oriented in other languages. ==Create a class== {code:} function myClass(param1, param2) { var private_member1 = param1; var private_member2 = param2; this.method1 = function () {
 // do something this.method2 = function(param1, ...]]></description><link>http:/www.youatnotes.de/web/youatnotes/wiki-xpages.nsf/dx/How_to_use_object_oriented_server_side_javascript</link><dc:subject>Server%20JavaScript</dc:subject><dc:creator>Julian Buss</dc:creator><comments>http:/www.youatnotes.de/web/youatnotes/wiki-xpages.nsf/dx/How_to_use_object_oriented_server_side_javascript?opendocument&amp;comments</comments><guid isPermaLink="true">http:/www.youatnotes.de/web/youatnotes/wiki-xpages.nsf/dx/How_to_use_object_oriented_server_side_javascript</guid><wfw:commentRss> http:/www.youatnotes.de/web/youatnotes/wiki-xpages.nsf/dxcomments/How_to_use_object_oriented_server_side_javascript</wfw:commentRss><wfw:comment> http:/www.youatnotes.de/web/youatnotes/wiki-xpages.nsf/dx/How_to_use_object_oriented_server_side_javascript?opendocument&amp;comments</wfw:comment></item>
<item><title>Work with events</title><pubDate>Mon, 12 Oct 2009 09:06:49 +0100</pubDate><description><![CDATA[ In short, the events of a XPage with two custom controls (controlA and controlB) are executed in the following order: ==events executed once== Xpage -> beforePageLoad
controlA -> beforePageLoad
controlA -> afterPageLoad
controlB -> beforePageLoad
controlB -> afterPageLoad
Xpage -> afterPageLoad ...]]></description><link>http:/www.youatnotes.de/web/youatnotes/wiki-xpages.nsf/dx/Work_with_events</link><dc:subject>Server%20JavaScript</dc:subject><dc:creator>Julian Buss</dc:creator><comments>http:/www.youatnotes.de/web/youatnotes/wiki-xpages.nsf/dx/Work_with_events?opendocument&amp;comments</comments><guid isPermaLink="true">http:/www.youatnotes.de/web/youatnotes/wiki-xpages.nsf/dx/Work_with_events</guid><wfw:commentRss> http:/www.youatnotes.de/web/youatnotes/wiki-xpages.nsf/dxcomments/Work_with_events</wfw:commentRss><wfw:comment> http:/www.youatnotes.de/web/youatnotes/wiki-xpages.nsf/dx/Work_with_events?opendocument&amp;comments</wfw:comment></item>
<item><title>Work with events and partial or full refresh</title><pubDate>Fri, 11 Sep 2009 08:27:22 +0200</pubDate><description><![CDATA[ ==Run a partial update from client javascript== You can use the following function to trigger a partial update from client javascript {code:} XSP.partialRefreshPost(id); {code} "id" is the runtime ID of the control, that means you have to get it with "#{id:nameOfControl}". If you don't need to be ...]]></description><link>http:/www.youatnotes.de/web/youatnotes/wiki-xpages.nsf/dx/Work_with_events_and_partial_or_full_refresh</link><dc:subject>Server%20JavaScript</dc:subject><dc:creator>Julian Buss</dc:creator><comments>http:/www.youatnotes.de/web/youatnotes/wiki-xpages.nsf/dx/Work_with_events_and_partial_or_full_refresh?opendocument&amp;comments</comments><guid isPermaLink="true">http:/www.youatnotes.de/web/youatnotes/wiki-xpages.nsf/dx/Work_with_events_and_partial_or_full_refresh</guid><wfw:commentRss> http:/www.youatnotes.de/web/youatnotes/wiki-xpages.nsf/dxcomments/Work_with_events_and_partial_or_full_refresh</wfw:commentRss><wfw:comment> http:/www.youatnotes.de/web/youatnotes/wiki-xpages.nsf/dx/Work_with_events_and_partial_or_full_refresh?opendocument&amp;comments</wfw:comment></item>
<item><title>Work with datasources</title><pubDate>Wed, 19 Aug 2009 09:48:06 +0200</pubDate><description><![CDATA[ ==Where to define a datasource== You can define a datasource on different levels: * in the XPage properties
* in the properties of a custom component
* in the properties of a panel Use the folowing rule of thumb: If you need a datasource in your whole XPage and even in custom components which are ...]]></description><link>http:/www.youatnotes.de/web/youatnotes/wiki-xpages.nsf/dx/Work_with_datasources</link><dc:subject>Server%20JavaScript</dc:subject><dc:creator>Julian Buss</dc:creator><comments>http:/www.youatnotes.de/web/youatnotes/wiki-xpages.nsf/dx/Work_with_datasources?opendocument&amp;comments</comments><guid isPermaLink="true">http:/www.youatnotes.de/web/youatnotes/wiki-xpages.nsf/dx/Work_with_datasources</guid><wfw:commentRss> http:/www.youatnotes.de/web/youatnotes/wiki-xpages.nsf/dxcomments/Work_with_datasources</wfw:commentRss><wfw:comment> http:/www.youatnotes.de/web/youatnotes/wiki-xpages.nsf/dx/Work_with_datasources?opendocument&amp;comments</wfw:comment></item>
<item><title>Work with numbers / math</title><pubDate>Thu, 30 Jul 2009 10:46:16 +0200</pubDate><description><![CDATA[ ==Convert a string to a number== {code:} var s = new Number(n)
{code} ==Round to n decimals== You can round a number with
{code:}
Math.round(number)
{code} Rounding to for example 3 decimals: {code:} Math.round(number * 1000) / 1000
{code} ==Integer division== {code:} Math.floor(number / 2)
{code} ...]]></description><link>http:/www.youatnotes.de/web/youatnotes/wiki-xpages.nsf/dx/Work_with_numbers__math</link><dc:subject>Server%20JavaScript</dc:subject><dc:creator>Julian Buss</dc:creator><comments>http:/www.youatnotes.de/web/youatnotes/wiki-xpages.nsf/dx/Work_with_numbers__math?opendocument&amp;comments</comments><guid isPermaLink="true">http:/www.youatnotes.de/web/youatnotes/wiki-xpages.nsf/dx/Work_with_numbers__math</guid><wfw:commentRss> http:/www.youatnotes.de/web/youatnotes/wiki-xpages.nsf/dxcomments/Work_with_numbers__math</wfw:commentRss><wfw:comment> http:/www.youatnotes.de/web/youatnotes/wiki-xpages.nsf/dx/Work_with_numbers__math?opendocument&amp;comments</wfw:comment></item>
<item><title>Work with Typeahead </title><pubDate>Thu, 23 Jul 2009 15:12:58 +0200</pubDate><description><![CDATA[ from Keith Strickland 
Go to one of your name fields and in the properties select the "Type Ahead" entry. Check the "Enable Type Ahead" check box. Add the proper separators and click the blue diamond next to Suggestions and pick "Compute Value". In the resulting javascript editor put the following ...]]></description><link>http:/www.youatnotes.de/web/youatnotes/wiki-xpages.nsf/dx/Work_with_Typeahead_</link><dc:subject>Server%20JavaScript</dc:subject><dc:creator>Anonymous</dc:creator><comments>http:/www.youatnotes.de/web/youatnotes/wiki-xpages.nsf/dx/Work_with_Typeahead_?opendocument&amp;comments</comments><guid isPermaLink="true">http:/www.youatnotes.de/web/youatnotes/wiki-xpages.nsf/dx/Work_with_Typeahead_</guid><wfw:commentRss> http:/www.youatnotes.de/web/youatnotes/wiki-xpages.nsf/dxcomments/Work_with_Typeahead_</wfw:commentRss><wfw:comment> http:/www.youatnotes.de/web/youatnotes/wiki-xpages.nsf/dx/Work_with_Typeahead_?opendocument&amp;comments</wfw:comment></item>
<item><title>Work with Dates</title><pubDate>Fri, 22 May 2009 22:17:41 +0200</pubDate><description><![CDATA[ ==General Tips== While working with dates in server side javascript, I noticed some glichtes in Domino 8.5.0. Here are some rules of thumb: Trying to convert a text to date with @TextToTime() may work, but in my case it mixed day and month values. My solution: parse the string yourself into year, ...]]></description><link>http:/www.youatnotes.de/web/youatnotes/wiki-xpages.nsf/dx/Work_with_Dates</link><dc:subject>Server%20JavaScript</dc:subject><dc:creator>Julian Buss</dc:creator><comments>http:/www.youatnotes.de/web/youatnotes/wiki-xpages.nsf/dx/Work_with_Dates?opendocument&amp;comments</comments><guid isPermaLink="true">http:/www.youatnotes.de/web/youatnotes/wiki-xpages.nsf/dx/Work_with_Dates</guid><wfw:commentRss> http:/www.youatnotes.de/web/youatnotes/wiki-xpages.nsf/dxcomments/Work_with_Dates</wfw:commentRss><wfw:comment> http:/www.youatnotes.de/web/youatnotes/wiki-xpages.nsf/dx/Work_with_Dates?opendocument&amp;comments</wfw:comment></item>
<item><title>Browser compatibility</title><pubDate>Mon, 18 May 2009 20:48:44 +0200</pubDate><description><![CDATA[ ==Internet Explorer 8 and Internet Explorer in general== 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
// ...]]></description><link>http:/www.youatnotes.de/web/youatnotes/wiki-xpages.nsf/dx/Browser_compatibility</link><dc:subject>Server%20JavaScript</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>How to output custom content like print from an agent</title><pubDate>Thu, 14 May 2009 21:05:53 +0200</pubDate><description><![CDATA[ You can use server side javascript in a XPage to write custom content to the browser, just like with agents and "print" statements in classic web development. This tip is taken from Stephan Wissel from [[http://www.wissel.net/blog/d6plinks/SHWL-7MGFBN]]. - create a Xpage
- set the "rendered" ...]]></description><link>http:/www.youatnotes.de/web/youatnotes/wiki-xpages.nsf/dx/How_to_output_custom_content_like_print_from_an_agent</link><dc:subject>Server%20JavaScript</dc:subject><dc:creator>Julian Buss</dc:creator><comments>http:/www.youatnotes.de/web/youatnotes/wiki-xpages.nsf/dx/How_to_output_custom_content_like_print_from_an_agent?opendocument&amp;comments</comments><guid isPermaLink="true">http:/www.youatnotes.de/web/youatnotes/wiki-xpages.nsf/dx/How_to_output_custom_content_like_print_from_an_agent</guid><wfw:commentRss> http:/www.youatnotes.de/web/youatnotes/wiki-xpages.nsf/dxcomments/How_to_output_custom_content_like_print_from_an_agent</wfw:commentRss><wfw:comment> http:/www.youatnotes.de/web/youatnotes/wiki-xpages.nsf/dx/How_to_output_custom_content_like_print_from_an_agent?opendocument&amp;comments</wfw:comment></item>

</channel></rss>
