<?xml version="1.0" encoding="ISO-8859-1" ?>
<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>XSPtalk - Notes / Domino and Web Development Blog | Comments</title><description>Sharing new technologies with the community</description><link>http://www.xsptalk.com/Public/Website/Blog.nsf/</link><language>en-us</language><lastBuildDate>Fri, 23 Apr 2010 10:24:38 AM +0100</lastBuildDate>
<item>
<title>Lotusphere - xPages Tools for Performance</title>
<pubDate>Fri, 23 Apr 2010 10:24:38 AM +0100</pubDate>
<dc:creator>Rasmus Bauck</dc:creator>
<dc:subject>Lotusphere - xPages Tools for Performance</dc:subject>
<description><![CDATA[Are you referring to this project?<br /><br />{ <a href="http://www.openntf.org/Projects/pmt.nsf/ProjectLookup/XPages%20Toolbox" target="_blank" title="Link: www.openntf.org/Projects/pmt.nsf/ProjectLookup/XPages%20Toolbox">Link</a> }<br /><br />Any news on when a release will be available?]]></description>
<content:encoded><![CDATA[Are you referring to this project?<br /><br />{ <a href="http://www.openntf.org/Projects/pmt.nsf/ProjectLookup/XPages%20Toolbox" target="_blank" title="Link: www.openntf.org/Projects/pmt.nsf/ProjectLookup/XPages%20Toolbox">Link</a> }<br /><br />Any news on when a release will be available?]]></content:encoded>
<link>http://www.xsptalk.com/Public/Website/Blog.nsf/dx/18012010193103CCOQVY.htm?opendocument&amp;comments#23.04.2010102438BSSD2X.htm</link>
</item>
<item>
<title>Future evolution of Notes and the  D  word</title>
<pubDate>Thu, 22 Apr 2010 06:47:09 PM +0100</pubDate>
<dc:creator>Dave Smith</dc:creator>
<dc:subject>Future evolution of Notes and the &quot;D&quot; word</dc:subject>
<description><![CDATA[Notes isn't dead. Customers (like us) are still buying in.<br /><br />Domino, Notes and Quickr was such a compelling platform we couldn't say no. IBM were helpful but not pushy, so it really our choice.<br /><br />I have developed our first apps over the last 3-4 weeks (with no previous experience) and I am starting to get the hang of it all.<br /><br />I am an experienced Java guy, so the whole JSF/xPages model doesn't cause me too much grief, but I am actually enjoying the 'classic' development more at the moment.<br /><br />Looking forward to many happy years.]]></description>
<content:encoded><![CDATA[Notes isn't dead. Customers (like us) are still buying in.<br /><br />Domino, Notes and Quickr was such a compelling platform we couldn't say no. IBM were helpful but not pushy, so it really our choice.<br /><br />I have developed our first apps over the last 3-4 weeks (with no previous experience) and I am starting to get the hang of it all.<br /><br />I am an experienced Java guy, so the whole JSF/xPages model doesn't cause me too much grief, but I am actually enjoying the 'classic' development more at the moment.<br /><br />Looking forward to many happy years.]]></content:encoded>
<link>http://www.xsptalk.com/Public/Website/Blog.nsf/dx/22042010100424CCOCNA.htm?opendocument&amp;comments#22042010184709BSSNV2.htm</link>
</item>
<item>
<title>Quick tips - Introduction to power of jQuery</title>
<pubDate>Tue, 13 Apr 2010 09:50:13 PM +0100</pubDate>
<dc:creator></dc:creator>
<dc:subject>Quick tips - Introduction to power of jQuery</dc:subject>
<description><![CDATA[]]></description>
<content:encoded><![CDATA[]]></content:encoded>
<link>http://www.xsptalk.com/Public/Website/Blog.nsf/dx/19112009125448CCOH6B.htm?opendocument&amp;comments#04132010095013PMBSSSFF.htm</link>
</item>
<item>
<title>Quick tips - Introduction to power of jQuery</title>
<pubDate>Tue, 13 Apr 2010 09:49:58 PM +0100</pubDate>
<dc:creator></dc:creator>
<dc:subject>Quick tips - Introduction to power of jQuery</dc:subject>
<description><![CDATA[]]></description>
<content:encoded><![CDATA[]]></content:encoded>
<link>http://www.xsptalk.com/Public/Website/Blog.nsf/dx/19112009125448CCOH6B.htm?opendocument&amp;comments#04132010094958PMBSSSFA.htm</link>
</item>
<item>
<title>Quick tips - Introduction to power of jQuery</title>
<pubDate>Wed, 10 Mar 2010 07:53:29 PM +0100</pubDate>
<dc:creator>ChrisC</dc:creator>
<dc:subject>Quick tips - Introduction to power of jQuery</dc:subject>
<description><![CDATA[There are few things you need to do when using jQuery. The article here on the blog takes you through a sortable table. The principles are the same.<br /><br />1. Make sure you reference a copy of the the core jQuery files - place your references to this in the HTMLHeader<br /><br />2. On the onload event you should need your code that manipulates the DOM<br /><br />such as <br /><br />$(document).ready(function(){<br /><br />$(".dateInput").datepicker({}); <br /><br />$(".dateInput").attr("readonly",true);<br /><br />$(".dateInput").css("backgroundColor","#efefef"); <br /><br />});<br /><br />The following article provides some more information..<br /><br />{ <a href="http://www.xsptalk.com/Public/Website/Blog.nsf/dx/17112009111145CCOF5Z.htm" target="_blank" title="Link: www.xsptalk.com/Public/Website/Blog.nsf/dx/17112009111145CCOF5Z.htm">Link</a> }<br /><br />Have a look also on the jQuery website. Lots of superb documentation there.<br /><br />Key things to have a look at are how you use the selectors to apply jQuery widgets, tools, effects etc.<br /><br />Any questions please post a response...]]></description>
<content:encoded><![CDATA[There are few things you need to do when using jQuery. The article here on the blog takes you through a sortable table. The principles are the same.<br /><br />1. Make sure you reference a copy of the the core jQuery files - place your references to this in the HTMLHeader<br /><br />2. On the onload event you should need your code that manipulates the DOM<br /><br />such as <br /><br />$(document).ready(function(){<br /><br />$(".dateInput").datepicker({}); <br /><br />$(".dateInput").attr("readonly",true);<br /><br />$(".dateInput").css("backgroundColor","#efefef"); <br /><br />});<br /><br />The following article provides some more information..<br /><br />{ <a href="http://www.xsptalk.com/Public/Website/Blog.nsf/dx/17112009111145CCOF5Z.htm" target="_blank" title="Link: www.xsptalk.com/Public/Website/Blog.nsf/dx/17112009111145CCOF5Z.htm">Link</a> }<br /><br />Have a look also on the jQuery website. Lots of superb documentation there.<br /><br />Key things to have a look at are how you use the selectors to apply jQuery widgets, tools, effects etc.<br /><br />Any questions please post a response...]]></content:encoded>
<link>http://www.xsptalk.com/Public/Website/Blog.nsf/dx/19112009125448CCOH6B.htm?opendocument&amp;comments#10032010195329BSSRBY.htm</link>
</item>
<item>
<title>Quick tips - Introduction to power of jQuery</title>
<pubDate>Wed, 10 Mar 2010 04:18:07 PM +0100</pubDate>
<dc:creator>sbanks</dc:creator>
<dc:subject>Quick tips - Introduction to power of jQuery</dc:subject>
<description><![CDATA[This is my first attempt at using jQuery so I have a few questions.<br /><br />1. Where should the line - $(".dateInput").datepicker({}); - be placed?<br /><br />2. Do these lines go on the individual fields? if so, into which property?<br /><br />$(".dateInput").attr("readonly",true); <br /><br />$(".dateInput").css("backgroundColor","#efefef"); <br /><br />Thanks]]></description>
<content:encoded><![CDATA[This is my first attempt at using jQuery so I have a few questions.<br /><br />1. Where should the line - $(".dateInput").datepicker({}); - be placed?<br /><br />2. Do these lines go on the individual fields? if so, into which property?<br /><br />$(".dateInput").attr("readonly",true); <br /><br />$(".dateInput").css("backgroundColor","#efefef"); <br /><br />Thanks]]></content:encoded>
<link>http://www.xsptalk.com/Public/Website/Blog.nsf/dx/19112009125448CCOH6B.htm?opendocument&amp;comments#03102010041807PMBSSM5D.htm</link>
</item>
<item>
<title>Free Sample Help Desk xPages Application</title>
<pubDate>Mon, 15 Feb 2010 09:04:14 PM +0100</pubDate>
<dc:creator>ChrisC</dc:creator>
<dc:subject>Free Sample Help Desk xPages Application</dc:subject>
<description><![CDATA[Guys,<br /><br />Thanks for the very encouraging feedback. Treating this as a serious project. Will be posting updates in the coming days / weeks.<br /><br />Much appreciated.<br /><br />Any questions feel free to drop me a note or post here.<br /><br />Thanks<br /><br />Chris]]></description>
<content:encoded><![CDATA[Guys,<br /><br />Thanks for the very encouraging feedback. Treating this as a serious project. Will be posting updates in the coming days / weeks.<br /><br />Much appreciated.<br /><br />Any questions feel free to drop me a note or post here.<br /><br />Thanks<br /><br />Chris]]></content:encoded>
<link>http://www.xsptalk.com/Public/Website/Blog.nsf/dx/11022010083130CCOBZQ.htm?opendocument&amp;comments#15022010210414BSSSQ7.htm</link>
</item>
<item>
<title>Free Sample Help Desk xPages Application</title>
<pubDate>Sat, 13 Feb 2010 10:50:49 AM +0100</pubDate>
<dc:creator>Bernd Webster</dc:creator>
<dc:subject>Free Sample Help Desk xPages Application</dc:subject>
<description><![CDATA[WOW... that sounds nice. Some idea/feature request:<br /><br />1.)<br /><br />let the user send a email into this application (for example to support@ACME.com directly from his mobile phone) and this email is then converted into a "ticket". Inform the user that the ticket is received by the system.<br /><br />2.)<br /><br />Create a unique number for each ticket so that every email which is send to this application can merged to the correct ticket.<br /><br />3.)<br /><br />If we add something to the ticket the user will get this information (like if we set this to "open query") if we ask the user for a screen shot.<br /><br />4.) <br /><br />use the string properties file for the language so that the community can help you to translate the whole application into other languages. You need to ask for the translation from the English file and I´m sure the community would be happy to translate it to the native language they use :-). There is a entry in the IBM wiki for this.]]></description>
<content:encoded><![CDATA[WOW... that sounds nice. Some idea/feature request:<br /><br />1.)<br /><br />let the user send a email into this application (for example to support@ACME.com directly from his mobile phone) and this email is then converted into a "ticket". Inform the user that the ticket is received by the system.<br /><br />2.)<br /><br />Create a unique number for each ticket so that every email which is send to this application can merged to the correct ticket.<br /><br />3.)<br /><br />If we add something to the ticket the user will get this information (like if we set this to "open query") if we ask the user for a screen shot.<br /><br />4.) <br /><br />use the string properties file for the language so that the community can help you to translate the whole application into other languages. You need to ask for the translation from the English file and I´m sure the community would be happy to translate it to the native language they use :-). There is a entry in the IBM wiki for this.]]></content:encoded>
<link>http://www.xsptalk.com/Public/Website/Blog.nsf/dx/11022010083130CCOBZQ.htm?opendocument&amp;comments#02132010105049AMBSSEQT.htm</link>
</item>
<item>
<title>Free Sample Help Desk xPages Application</title>
<pubDate>Fri, 12 Feb 2010 08:35:40 AM +0100</pubDate>
<dc:creator>Albert Buendia</dc:creator>
<dc:subject>Free Sample Help Desk xPages Application</dc:subject>
<description><![CDATA[Can't wait to have a look.]]></description>
<content:encoded><![CDATA[Can't wait to have a look.]]></content:encoded>
<link>http://www.xsptalk.com/Public/Website/Blog.nsf/dx/11022010083130CCOBZQ.htm?opendocument&amp;comments#12022010083540BSSC4C.htm</link>
</item>
<item>
<title>Free Sample Help Desk xPages Application</title>
<pubDate>Thu, 11 Feb 2010 09:43:47 PM +0100</pubDate>
<dc:creator>Miguel Angel Calvo</dc:creator>
<dc:subject>Free Sample Help Desk xPages Application</dc:subject>
<description><![CDATA[If you build something that could be easily localized, it would have a bigger audience.]]></description>
<content:encoded><![CDATA[If you build something that could be easily localized, it would have a bigger audience.]]></content:encoded>
<link>http://www.xsptalk.com/Public/Website/Blog.nsf/dx/11022010083130CCOBZQ.htm?opendocument&amp;comments#11022010214347BSSTGW.htm</link>
</item>
<item>
<title>Free Sample Help Desk xPages Application</title>
<pubDate>Thu, 11 Feb 2010 09:27:43 PM +0100</pubDate>
<dc:creator>Curt Stone</dc:creator>
<dc:subject>Free Sample Help Desk xPages Application</dc:subject>
<description><![CDATA[Silly question. The more examples of xPages, the better. We all learn more from examples. :) Thanks]]></description>
<content:encoded><![CDATA[Silly question. The more examples of xPages, the better. We all learn more from examples. :) Thanks]]></content:encoded>
<link>http://www.xsptalk.com/Public/Website/Blog.nsf/dx/11022010083130CCOBZQ.htm?opendocument&amp;comments#02112010092743PMBSST6V.htm</link>
</item>
<item>
<title>Free Sample Help Desk xPages Application</title>
<pubDate>Thu, 11 Feb 2010 09:15:53 PM +0100</pubDate>
<dc:creator>Leif Lagebrand</dc:creator>
<dc:subject>Free Sample Help Desk xPages Application</dc:subject>
<description><![CDATA[Yes woulde be nice. Many of us have built such applications but not i Xpages]]></description>
<content:encoded><![CDATA[Yes woulde be nice. Many of us have built such applications but not i Xpages]]></content:encoded>
<link>http://www.xsptalk.com/Public/Website/Blog.nsf/dx/11022010083130CCOBZQ.htm?opendocument&amp;comments#2010-02-11211553BSSSXG.htm</link>
</item>
<item>
<title>Free Sample Help Desk xPages Application</title>
<pubDate>Thu, 11 Feb 2010 09:14:40 PM +0100</pubDate>
<dc:creator>Leif Lagebrand</dc:creator>
<dc:subject>Free Sample Help Desk xPages Application</dc:subject>
<description><![CDATA[]]></description>
<content:encoded><![CDATA[]]></content:encoded>
<link>http://www.xsptalk.com/Public/Website/Blog.nsf/dx/11022010083130CCOBZQ.htm?opendocument&amp;comments#2010-02-11211440BSSSWQ.htm</link>
</item>
<item>
<title>Free Sample Help Desk xPages Application</title>
<pubDate>Thu, 11 Feb 2010 12:42:10 PM +0100</pubDate>
<dc:creator>Benoit Dubuc</dc:creator>
<dc:subject>Free Sample Help Desk xPages Application</dc:subject>
<description><![CDATA[I support Steve: for maximum exposure and feedback (and maybe help), release it on OpenNTF.]]></description>
<content:encoded><![CDATA[I support Steve: for maximum exposure and feedback (and maybe help), release it on OpenNTF.]]></content:encoded>
<link>http://www.xsptalk.com/Public/Website/Blog.nsf/dx/11022010083130CCOBZQ.htm?opendocument&amp;comments#02112010124210PMBSSGWE.htm</link>
</item>
<item>
<title>Free Sample Help Desk xPages Application</title>
<pubDate>Thu, 11 Feb 2010 09:13:38 AM +0100</pubDate>
<dc:creator>Steve Castledine</dc:creator>
<dc:subject>Free Sample Help Desk xPages Application</dc:subject>
<description><![CDATA["best approach regarding releasing this" - I recommend using { <a href="http://www.openntf.org. " target="_blank" title="Link: www.openntf.org. ">Link</a> } will give you some tools to help manage and community help and exposure.]]></description>
<content:encoded><![CDATA["best approach regarding releasing this" - I recommend using { <a href="http://www.openntf.org. " target="_blank" title="Link: www.openntf.org. ">Link</a> } will give you some tools to help manage and community help and exposure.]]></content:encoded>
<link>http://www.xsptalk.com/Public/Website/Blog.nsf/dx/11022010083130CCOBZQ.htm?opendocument&amp;comments#02112010091338AMBSSCU3.htm</link>
</item>
<item>
<title>Lotusphere - more whats new in xPages</title>
<pubDate>Fri, 22 Jan 2010 04:15:04 PM +0100</pubDate>
<dc:creator>ChrisC</dc:creator>
<dc:subject>Lotusphere - more whats new in xPages</dc:subject>
<description><![CDATA[Apologies for the delay in updates - after the madness of the last few days comes sleep (I am a day behind in that area). A lot of the above will be in progress for 8.5.2 - cannot be more specific due to NDA. 8.5.2 should also be with us mid year.<br /><br />In terms of further updates I will be looking at some more articles with a bit of depth around symphoney, xpages, mobile development, foundations etc. Have also made a commitment to start tweeting a bit more to interact a bit better with the community!<br /><br />But first sleep!!]]></description>
<content:encoded><![CDATA[Apologies for the delay in updates - after the madness of the last few days comes sleep (I am a day behind in that area). A lot of the above will be in progress for 8.5.2 - cannot be more specific due to NDA. 8.5.2 should also be with us mid year.<br /><br />In terms of further updates I will be looking at some more articles with a bit of depth around symphoney, xpages, mobile development, foundations etc. Have also made a commitment to start tweeting a bit more to interact a bit better with the community!<br /><br />But first sleep!!]]></content:encoded>
<link>http://www.xsptalk.com/Public/Website/Blog.nsf/dx/18012010163610CCOMGN.htm?opendocument&amp;comments#22012010161504BSSM3G.htm</link>
</item>
<item>
<title>Lotusphere - more whats new in xPages</title>
<pubDate>Fri, 22 Jan 2010 04:10:46 PM +0100</pubDate>
<dc:creator>ChrisC</dc:creator>
<dc:subject>Lotusphere - more whats new in xPages</dc:subject>
<description><![CDATA[Patrick,<br /><br />jQuery is an excellent tool - and they are generally simple to invoke (quite often one line of code). I guess they are working on beefing up the dojo side of things where we know there are some opportunities for improvements. BTW - some nice articles on your web site on Dojo..]]></description>
<content:encoded><![CDATA[Patrick,<br /><br />jQuery is an excellent tool - and they are generally simple to invoke (quite often one line of code). I guess they are working on beefing up the dojo side of things where we know there are some opportunities for improvements. BTW - some nice articles on your web site on Dojo..]]></content:encoded>
<link>http://www.xsptalk.com/Public/Website/Blog.nsf/dx/18012010163610CCOMGN.htm?opendocument&amp;comments#22012010161046BSSLYS.htm</link>
</item>
<item>
<title>Lotusphere - more whats new in xPages</title>
<pubDate>Thu, 21 Jan 2010 02:17:07 AM +0100</pubDate>
<dc:creator>Allen</dc:creator>
<dc:subject>Lotusphere - more whats new in xPages</dc:subject>
<description><![CDATA[Anxiously awaiting updates :-)]]></description>
<content:encoded><![CDATA[Anxiously awaiting updates :-)]]></content:encoded>
<link>http://www.xsptalk.com/Public/Website/Blog.nsf/dx/18012010163610CCOMGN.htm?opendocument&amp;comments#01212010021707AMBSS4PR.htm</link>
</item>
<item>
<title>Lotusphere - more whats new in xPages</title>
<pubDate>Mon, 18 Jan 2010 10:18:28 PM +0100</pubDate>
<dc:creator>RobShaver</dc:creator>
<dc:subject>Lotusphere - more whats new in xPages</dc:subject>
<description><![CDATA[CKEditor works just fine in my web designs. What was your reference to it ... Notes Client?]]></description>
<content:encoded><![CDATA[CKEditor works just fine in my web designs. What was your reference to it ... Notes Client?]]></content:encoded>
<link>http://www.xsptalk.com/Public/Website/Blog.nsf/dx/18012010163610CCOMGN.htm?opendocument&amp;comments#01182010101828PMBSSU6L.htm</link>
</item>
<item>
<title>Lotusphere - Strategy and Futures session</title>
<pubDate>Mon, 18 Jan 2010 09:03:51 PM +0100</pubDate>
<dc:creator>Patrick Kwinten</dc:creator>
<dc:subject>Lotusphere - Strategy and Futures session</dc:subject>
<description><![CDATA[yeah! who needs windows and office. replace with android and connections asap.]]></description>
<content:encoded><![CDATA[yeah! who needs windows and office. replace with android and connections asap.]]></content:encoded>
<link>http://www.xsptalk.com/Public/Website/Blog.nsf/dx/18012010180047CCOP5J.htm?opendocument&amp;comments#18012010210351BSSSPY.htm</link>
</item>

</channel></rss>
