<?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/"
xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
>
<channel>
<title>John's Blog - Comments</title>
<description></description>
<lastBuildDate>Mon, 6 Sep 2010 10:05:07 AM -0700</lastBuildDate>
<link>http://www.jmackey.net/groupwareinc/johnblog/johnblog.nsf</link>
<item><title>Comment From anonymous</title><link>http://www.jmackey.net/groupwareinc/johnblog/johnblog.nsf/d6plinks/GROC-7GLFZG#comments</link><content:encoded><![CDATA[passing client side objects to server could be possible only if there is any event happening that sends the object to the server. here the expression is already executed onto the server and rendered back to the client.]]></content:encoded><dc:creator>anonymous</dc:creator><guid isPermaLink="false">http://www.jmackey.net/groupwareinc/johnblog/johnblog.nsf/d6plinks/GROC-7GLFZG</guid><pubDate>Mon, 6 Sep 2010 10:05:07 AM -0700</pubDate></item><item><title>Comment From data recovery</title><link>http://www.jmackey.net/groupwareinc/johnblog/johnblog.nsf/d6plinks/XPages_tip_gotoPage_View_Pager#comments</link><content:encoded><![CDATA[Thanks for this. It is very helpful in my project work. Currently big portion of my project is pending.]]></content:encoded><dc:creator>data recovery</dc:creator><guid isPermaLink="false">http://www.jmackey.net/groupwareinc/johnblog/johnblog.nsf/d6plinks/XPages_tip_gotoPage_View_Pager</guid><pubDate>Fri, 6 Aug 2010 05:02:04 AM -0700</pubDate></item><item><title>Comment From Chetan</title><link>http://www.jmackey.net/groupwareinc/johnblog/johnblog.nsf/d6plinks/GROC-7GLFZG#comments</link><content:encoded><![CDATA[ur right that could possibly help]]></content:encoded><dc:creator>Chetan</dc:creator><guid isPermaLink="false">http://www.jmackey.net/groupwareinc/johnblog/johnblog.nsf/d6plinks/GROC-7GLFZG</guid><pubDate>Thu, 22 Jul 2010 01:23:28 AM -0700</pubDate></item><item><title>Comment From Mangesh G Wagle</title><link>http://www.jmackey.net/groupwareinc/johnblog/johnblog.nsf/d6plinks/GROC-7GLFZG#comments</link><content:encoded><![CDATA[ <b>var someDate = new Date(2010,4,1);
<br>var someVar = '#{javascript:sessionScope.put("sessDate",someDate);}';
<br>
<br>regarding this example, one solution could be that you could assign the someDate value to a field of Date type and then try passing the field to sessionScope.put method. Reason being that fields are actually accessible on both the sides (server side as well as client side).
<br>
<br>Also need to check if its possible to pass client side objects to server side script as you were trying in your example.</b>]]></content:encoded><dc:creator>Mangesh G Wagle</dc:creator><guid isPermaLink="false">http://www.jmackey.net/groupwareinc/johnblog/johnblog.nsf/d6plinks/GROC-7GLFZG</guid><pubDate>Sun, 11 Jul 2010 02:27:31 AM -0700</pubDate></item><item><title>Comment From reynald</title><link>http://www.jmackey.net/groupwareinc/johnblog/johnblog.nsf/d6plinks/XPages-Extend-Dojo-Editor#comments</link><content:encoded><![CDATA[how can i include in the rich text the copy and paste coming from the word document including the image? Thanks]]></content:encoded><dc:creator>reynald</dc:creator><guid isPermaLink="false">http://www.jmackey.net/groupwareinc/johnblog/johnblog.nsf/d6plinks/XPages-Extend-Dojo-Editor</guid><pubDate>Sat, 10 Jul 2010 04:20:49 AM -0700</pubDate></item><item><title>Comment From Raphael Costa</title><link>http://www.jmackey.net/groupwareinc/johnblog/johnblog.nsf/d6plinks/GROC-7FMJ3J#comments</link><content:encoded><![CDATA[Hi John,<br><br>I figured out how to solve this "bug".<br>I put the object, that put the custom control as a "newDocument", in the end of the array.<br>&lt;xp:repeat id="repeat1" rows="30" var="entryExecutante"<br>disableTheme="true"&gt;<br>&lt;li&gt;<br><br>&lt;xc:ccNovoExecutante action="#{javascript:entryExecutante.action}"<br>CodigoAN="#{javascript:entryExecutante.CodigoAN}"<br>CodigoGerencia="#{javascript:entryExecutante.CodigoGerencia}"<br>CodigoVCP="#{javascript:entryExecutante.CodigoVCP}"<br>Gerencia="#{javascript:entryExecutante.Gerencia}" NoteID="#{javascript:entryExecutante.NoteID}"&gt;<br>&lt;/xc:ccNovoExecutante&gt;<br>&lt;/li&gt;<br>&lt;xp:this.value&gt;&lt;![CDATA[#{javascript:var arrayExecutante=null;<br>var index=0;<br><br>var dc = viDu001.getAllDocumentsByKey("C~"+vcp.getValue("ca_Codigo")+"~fo_ExecutanteVCP~", false);<br>if(dc.getCount()&gt;0){<br>if(arrayExecutante==null) arrayExecutante=new Array();<br>for(var i=1; i&lt;=dc.getCount(); i++)<br>arrayExecutante.push({<br>NoteID: dc.getNthDocument(i).getNoteID(),<br>action: (vcp.isEditable()?"editDocument":"openDocument")<br>/*CodigoGerencia: dc.getNthDocument(i).getItemValueString("ca_exvCodigoGerencia"),<br>CodigoVCP: dc.getNthDocument(i).getItemValueString("ca_exvCodigoVCP"),<br>Gerencia: dc.getNthDocument(i).getItemValueString("ca_exvGerencia"),<br>CodigoAN: dc.getNthDocument(i).getItemValueString("ca_exvCodigoAN")*/<br>});<br>}<br><br>if(sessionScope.acaoVCP=="novoExecutante"){<br>// arrayExecutante=new Array();<br>arrayExecutante.push({<br>action: null,<br>NoteID: null,<br>CodigoGerencia: vcp.getValue("ca_vcpCodigoGerencia"),<br>CodigoVCP: vcp.getValue("ca_Codigo"),<br>Gerencia: vcp.getValue("ca_vcpGerencia"),<br>CodigoAN: vcp.getValue("ca_vcpCodigoAN")<br>});<br>}<br><br>return arrayExecutante;}]]&gt;&lt;/xp:this.value&gt;<br><br>&lt;/xp:repeat&gt;]]></content:encoded><dc:creator>Raphael Costa</dc:creator><guid isPermaLink="false">http://www.jmackey.net/groupwareinc/johnblog/johnblog.nsf/d6plinks/GROC-7FMJ3J</guid><pubDate>Mon, 5 Jul 2010 09:42:28 AM -0700</pubDate></item><item><title>Comment From Raphael Costa</title><link>http://www.jmackey.net/groupwareinc/johnblog/johnblog.nsf/d6plinks/GROC-7FMJ3J#comments</link><content:encoded><![CDATA[Hello John,<br>First, I like to congrat you for this nice article.<br>Now, get to the point:<br>I'am developing a web XPages application, and I trying to use your techinique of using multiple Datasources.<br><br>I gotta a main document that have 0 or more dependent documents. So, I desined a XPage with a repeat control that shows the associated documents:<br><br>&lt;xp:repeat id="repeat1" rows="30" var="entryExecutante"&gt;<br><br>The formula that Im using inside the repeat control is:<br><br>&lt;xp:this.value&gt;&lt;![CDATA[#{javascript:var arrayExecutante=null;<br>var index=0;<br>if(sessionScope.acaoVCP=="novoExecutante"){<br>	arrayExecutante=new Array();<br>	//arrayExecutante[index++]=sessionScope.dadosNovoExecutante;<br>	arrayExecutante[index++]={<br>		action: null,<br>		NoteID: null,<br>		CodigoGerencia: vcp.getValue("ca_vcpCodigoGerencia"),<br>		CodigoVCP: vcp.getValue("ca_Codigo"),<br>		Gerencia: vcp.getValue("ca_vcpGerencia"),<br>		CodigoAN: vcp.getValue("ca_vcpCodigoAN")<br>	}<br>}<br><br>var dc = viDu001.getAllDocumentsByKey("C~"+vcp.getValue("ca_Codigo")+"~fo_ExecutanteVCP~", false);<br>if(dc.getCount()&gt;0){<br>	if(arrayExecutante==null) arrayExecutante=new Array();<br>	for(var i=1; i&lt;=dc.getCount(); i++)<br>		arrayExecutante[index++]={<br>			NoteID: dc.getNthDocument(i).getNoteID(),<br>			action: vcp.isEditable()?"editDocument":"openDocument",<br>			CodigoGerencia: vcp.getValue("ca_vcpCodigoGerencia"),<br>			CodigoVCP: vcp.getValue("ca_Codigo"),<br>			Gerencia: vcp.getValue("ca_vcpGerencia"),<br>			CodigoAN: vcp.getValue("ca_vcpCodigoAN")<br>		};<br>}<br><br>return arrayExecutante;}]]&gt;&lt;/xp:this.value&gt;<br><br>Basically, this formula creates a array of objects that will initialize the custom control that contains the datasource of the associted doc.<br>At the beginning, I test if the user is creating a new document (sessionScope.acaoVCP=="novoExecutante", this sessionScope variable is set through a button), if so, it sets the first position on the array with a object with action=null and NoteID=null, signaling that the datasource correspond a new document.<br><br>The button that shows that signals the repeat to put the empty custom control at the beggining follows:<br><br>&lt;xp:button value="Incluir Executante" id="button5" styleClass="customButton"&gt;<br>	&lt;xp:this.rendered&gt;&lt;![CDATA[#{javascript:vcp.isEditable() &amp;&amp; sessionScope.acaoVCP!="novoExecutante"}]]&gt;<br>	&lt;/xp:this.rendered&gt;<br>	&lt;xp:eventHandler event="onclick" submit="true" refreshMode="partial" immediate="true" refreshId="pnExecutantesForm"&gt;<br>		&lt;xp:this.action&gt;<br>			&lt;xp:executeScript&gt;<br>				&lt;xp:this.script&gt;&lt;![CDATA[#{javascript:sessionScope.acaoVCP="novoExecutante";}]]&gt;<br>				&lt;/xp:this.script&gt;<br>			&lt;/xp:executeScript&gt;<br>		&lt;/xp:this.action&gt;<br>	&lt;/xp:eventHandler&gt;<br>&lt;/xp:button&gt;<br><br>Note that the event only tells the application to refresh partial, the "pnExecutantesForm" is the &lt;xp:panel&gt; that contains the button and the repeat control.<br><br>Inside the repeat, I put a custom control with a datasource to the associated document.<br><br>&lt;xc:ccNovoExecutante <br>	action="#{javascript:entryExecutante.action}" <br>	CodigoAN="#{javascript:entryExecutante.CodigoAN}" <br>	CodigoGerencia="#{javascript:entryExecutante.CodigoGerencia}" <br>	CodigoVCP="#{javascript:entryExecutante.CodigoVCP}" <br>	Gerencia="#{javascript:entryExecutante.Gerencia}" <br>	NoteID="#{javascript:entryExecutante.NoteID}"&gt;<br>&lt;/xc:ccNovoExecutante&gt;<br><br>This custom control provides a few properties to allow me to control its behavior.<br>The custom control's Datasource is defined by the compositeData.action and the compositeData.NoteID:<br><br>	&lt;xp:this.data&gt;<br>		&lt;xp:dominoDocument var="docNewExecutante"<br>			formName="fo_ExecutanteVCP" ignoreRequestParams="true"<br>			computeWithForm="onsave"<br>			documentId="#{javascript:return compositeData.NoteID}"<br>			action="#{javascript:compositeData.action}"&gt;<br>			<br>			&lt;xp:this.postNewDocument&gt;<br>				&lt;xp:executeScript&gt;<br>					&lt;xp:this.script&gt;&lt;![CDATA[#{javascript:requestScope.CodigoNovoExecutante=@Unique()<br>docNewExecutante.replaceItemValue("ca_exvCodigoGerencia", compositeData.CodigoGerencia);<br>docNewExecutante.replaceItemValue("ca_exvCodigoVCP", compositeData.CodigoVCP);<br>docNewExecutante.replaceItemValue("ca_Codigo", requestScope.CodigoNovoExecutante)}]]&gt;&lt;/xp:this.script&gt;<br>				&lt;/xp:executeScript&gt;<br>			&lt;/xp:this.postNewDocument&gt;<br>		&lt;/xp:dominoDocument&gt;<br>	&lt;/xp:this.data&gt;<br>	<br>The main objective here is, allow the user to view the associated docs through this custom control in the main page, and, when the user clicks the button to add a new associated doc, the application shows in the first position a empty form to input the information.<br><br>THE PROBLEM:<br><br>When I click the button, instead of show a empty form, it shows a form whith the values of the last line of the associated docs, and scramble all the associated docs that it had already show in a correct way.<br>The strange thing is, when I put only the part of the code that put the object that intialize the custom control to show a empty form, it works. But, when I mixed up, it gets scramble.<br><br>Do you have any idea why this is happening?<br>Any help will be welcome.]]></content:encoded><dc:creator>Raphael Costa</dc:creator><guid isPermaLink="false">http://www.jmackey.net/groupwareinc/johnblog/johnblog.nsf/d6plinks/GROC-7FMJ3J</guid><pubDate>Fri, 2 Jul 2010 12:52:01 PM -0700</pubDate></item><item><title>Comment From Guille</title><link>http://www.jmackey.net/groupwareinc/johnblog/johnblog.nsf/d6plinks/Running-XPages-Everywhere#comments</link><content:encoded><![CDATA[Hi everybody!<br><br>Is there any way to deploy xpages in notes release 8.5?, I developed an app using designer 8.5.1 but it does not work in the clients, thanks]]></content:encoded><dc:creator>Guille</dc:creator><guid isPermaLink="false">http://www.jmackey.net/groupwareinc/johnblog/johnblog.nsf/d6plinks/Running-XPages-Everywhere</guid><pubDate>Tue, 15 Jun 2010 08:18:05 AM -0700</pubDate></item><item><title>Comment From Syed Hussain M</title><link>http://www.jmackey.net/groupwareinc/johnblog/johnblog.nsf/d6plinks/GROC-7FFLYJ#comments</link><content:encoded><![CDATA[Hi Jhon,<br>     You have done the excellent job, This will be very very useful for who are all eager to learn xPage in effective, Once again I thank you for your excellent contribution to be making the effective developer, I always having interested to see your future contribution.  ]]></content:encoded><dc:creator>Syed Hussain M</dc:creator><guid isPermaLink="false">http://www.jmackey.net/groupwareinc/johnblog/johnblog.nsf/d6plinks/GROC-7FFLYJ</guid><pubDate>Tue, 15 Jun 2010 06:10:06 AM -0700</pubDate></item><item><title>Comment From Antonio</title><link>http://www.jmackey.net/groupwareinc/johnblog/johnblog.nsf/d6plinks/XPages-MultiFile-Download-Control#comments</link><content:encoded><![CDATA[Hi John:
<br>
<br>I have a question about if is possible to control the files's size when it is upload, I did an example an upload a file with empty size ( 0 kb ) and when I submit the document permit me to do this, but when I open again the document in read mode is not attached because is deleted automaticcally ( same case for the documents greater than 1024 kb ), I would like to control this when the files is being upload. Do you have any axample about it ( if is possible to do it ) ? I really aprreciate your help.
<br>
<br>Thanks in advance.]]></content:encoded><dc:creator>Antonio</dc:creator><guid isPermaLink="false">http://www.jmackey.net/groupwareinc/johnblog/johnblog.nsf/d6plinks/XPages-MultiFile-Download-Control</guid><pubDate>Mon, 31 May 2010 12:14:53 PM -0700</pubDate></item><item><title>Comment From Demha</title><link>http://www.jmackey.net/groupwareinc/johnblog/johnblog.nsf/d6plinks/GROC-7GLFZG#comments</link><content:encoded><![CDATA[Hi,<br>It seem's that if you put your JS in a library, the syntaxe '{#}' don't work. Have you a way to bypass that?<br><br>Thanks]]></content:encoded><dc:creator>Demha</dc:creator><guid isPermaLink="false">http://www.jmackey.net/groupwareinc/johnblog/johnblog.nsf/d6plinks/GROC-7GLFZG</guid><pubDate>Thu, 27 May 2010 08:30:22 AM -0700</pubDate></item><item><title>Comment From Sreedhar</title><link>http://www.jmackey.net/groupwareinc/johnblog/johnblog.nsf/d6plinks/GROC-7FUJ67#comments</link><content:encoded><![CDATA[
<br>Good information for Xpages beginners.
<br>
<br>Good job!!!!!!!!!!!
<br>
<br>]]></content:encoded><dc:creator>Sreedhar</dc:creator><guid isPermaLink="false">http://www.jmackey.net/groupwareinc/johnblog/johnblog.nsf/d6plinks/GROC-7FUJ67</guid><pubDate>Wed, 26 May 2010 06:32:28 AM -0700</pubDate></item><item><title>Comment From Ajith Peethambaran</title><link>http://www.jmackey.net/groupwareinc/johnblog/johnblog.nsf/d6plinks/Running-XPages-Everywhere#comments</link><content:encoded><![CDATA[Hi, This is in continuation of the earlier issue that I reported. I was able to figure out what was causing the issue. In the location document, under Basics tab, I had proxy settings. The moment I remove that, XPages start working in notes client. Not sure why is this happening, and I can't afford to remove this proxy setting from each of my users. So, is there a work-around that anyone knows?]]></content:encoded><dc:creator>Ajith Peethambaran</dc:creator><guid isPermaLink="false">http://www.jmackey.net/groupwareinc/johnblog/johnblog.nsf/d6plinks/Running-XPages-Everywhere</guid><pubDate>Fri, 14 May 2010 12:04:53 PM -0700</pubDate></item><item><title>Comment From Judy</title><link>http://www.jmackey.net/groupwareinc/johnblog/johnblog.nsf/d6plinks/XPages-How-to-Compute-a-Custom-Control-at-Runtime#comments</link><content:encoded><![CDATA[I stumbled upon this while looking for something else in your blog, and the comment by Vitalijs is precisely the solution I was looking for to dynamically load a custom control.  Thanks to the both of you!  John, I am most grateful -- your blog &amp; examples are an indispensable resource to learning &amp; using XPages.]]></content:encoded><dc:creator>Judy</dc:creator><guid isPermaLink="false">http://www.jmackey.net/groupwareinc/johnblog/johnblog.nsf/d6plinks/XPages-How-to-Compute-a-Custom-Control-at-Runtime</guid><pubDate>Wed, 12 May 2010 08:43:47 PM -0700</pubDate></item><item><title>Comment From matthew fox</title><link>http://www.jmackey.net/groupwareinc/johnblog/johnblog.nsf/d6plinks/XPages_tip_gotoPage_View_Pager#comments</link><content:encoded><![CDATA[gotoPage only seems to work if the page you are going to is a link on the pager.  e.g. if the pager shows pages 1-8, gotoPage(10) will go to page 8.<br><br>I think you can find the current page from the pager.<br><br>e.g.<br>pager:   com.ibm.xsp.component.xp.XspPager<br>repeat:  com.ibm.xsp.component.xp.XspDataIterator]]></content:encoded><dc:creator>matthew fox</dc:creator><guid isPermaLink="false">http://www.jmackey.net/groupwareinc/johnblog/johnblog.nsf/d6plinks/XPages_tip_gotoPage_View_Pager</guid><pubDate>Tue, 11 May 2010 10:40:46 AM -0700</pubDate></item><item><title>Comment From Viewer</title><link>http://www.jmackey.net/groupwareinc/johnblog/johnblog.nsf/d6plinks/XPages_tip_gotoPage_View_Pager#comments</link><content:encoded><![CDATA[Hello,<br><br>Great article, thank you.<br><br>The only remaining question is, how to handle <b>categorized</b> views: e.g. on the first page I open three categories, then I open a document from the third opened category, which moved to the second page of the view by opening the categories. Closing the opened document takes back to the first page of the view instead of the second, because opened categories have not been stored.<br>I could not find any way to store the categories opened by the user, to make possible navigate back exactly the same position (<b>view row</b>) from the document was opened, with the categories opened. This currently works only in standard Notes client, unfortunately.<br>Opening Xpages documents in new window can be an option, however this method can not be applied to Notes client.<br>How to use gotoRow()? Totally agre with this question. From where should we get the parameter in this situation? By opening and closing categories the row number of the document always change.<img src="/groupwareinc/johnblog/johnblog.nsf/2/DLYH-5N3GK5/$File/huh.gif"> ]]></content:encoded><dc:creator>Viewer</dc:creator><guid isPermaLink="false">http://www.jmackey.net/groupwareinc/johnblog/johnblog.nsf/d6plinks/XPages_tip_gotoPage_View_Pager</guid><pubDate>Tue, 11 May 2010 05:50:10 AM -0700</pubDate></item><item><title>Comment From Cedric</title><link>http://www.jmackey.net/groupwareinc/johnblog/johnblog.nsf/d6plinks/GROC-7FUJ67#comments</link><content:encoded><![CDATA[Hi John, <br><br>Thank you for the tip,<br>Could you please tell me how do you do the same and even  bind the computed field to a field in a form?<br>the field in your sample is like "computed for display" how can I do the same for a computed field  stored in the database ?<br>Thank you in advance,]]></content:encoded><dc:creator>Cedric</dc:creator><guid isPermaLink="false">http://www.jmackey.net/groupwareinc/johnblog/johnblog.nsf/d6plinks/GROC-7FUJ67</guid><pubDate>Thu, 6 May 2010 12:10:11 PM -0700</pubDate></item><item><title>Comment From Gaurav Sapra</title><link>http://www.jmackey.net/groupwareinc/johnblog/johnblog.nsf/d6plinks/SurveyToolSample#comments</link><content:encoded><![CDATA[Hi John, 
<br>
<br>Great Work. I have not received an email though..
<br>
<br>Thanks]]></content:encoded><dc:creator>Gaurav Sapra</dc:creator><guid isPermaLink="false">http://www.jmackey.net/groupwareinc/johnblog/johnblog.nsf/d6plinks/SurveyToolSample</guid><pubDate>Thu, 6 May 2010 04:24:08 AM -0700</pubDate></item><item><title>Comment From Ajith Peethambaran</title><link>http://www.jmackey.net/groupwareinc/johnblog/johnblog.nsf/d6plinks/Running-XPages-Everywhere#comments</link><content:encoded><![CDATA[Hi, 
<br>Its a cool stuff and works fine on web. I placed the Customer orders database on a server and accessed it from few of my machines running Lotus notes 8.5.1. It worked fine in one machine, but it displayed the message "Loading Customer order..." for few minutes and then gave the error "Network Error A communication error occurred: 'Operation timed out' The Web server may be down, too busy, or experiencing other problems preventing it from responding to requests. You may wish to try again at a later time." Any idea of what could be the problem?]]></content:encoded><dc:creator>Ajith Peethambaran</dc:creator><guid isPermaLink="false">http://www.jmackey.net/groupwareinc/johnblog/johnblog.nsf/d6plinks/Running-XPages-Everywhere</guid><pubDate>Wed, 5 May 2010 05:14:52 PM -0700</pubDate></item><item><title>Comment From Tanya</title><link>http://www.jmackey.net/groupwareinc/johnblog/johnblog.nsf/d6plinks/GROC-7G3GF7#comments</link><content:encoded><![CDATA[Good day
<br>
<br>I'm looking for an example on how to use the Block-level container control in notes 8.5.1  Can't get it to work
<br>
<br>Thank you :)]]></content:encoded><dc:creator>Tanya</dc:creator><guid isPermaLink="false">http://www.jmackey.net/groupwareinc/johnblog/johnblog.nsf/d6plinks/GROC-7G3GF7</guid><pubDate>Thu, 29 Apr 2010 05:33:02 AM -0700</pubDate></item><item><title>Comment From SaPu</title><link>http://www.jmackey.net/groupwareinc/johnblog/johnblog.nsf/d6plinks/GROC-7GLFZG#comments</link><content:encoded><![CDATA[Hi,
<br>
<br>I have the same problem as Sudatta. The code is in a library and it seems the server side code does not work there. Has anyone found a solution yet? Thanks.]]></content:encoded><dc:creator>SaPu</dc:creator><guid isPermaLink="false">http://www.jmackey.net/groupwareinc/johnblog/johnblog.nsf/d6plinks/GROC-7GLFZG</guid><pubDate>Wed, 28 Apr 2010 02:55:57 AM -0700</pubDate></item><item><title>Comment From Atul Saxena</title><link>http://www.jmackey.net/groupwareinc/johnblog/johnblog.nsf/d6plinks/GROC-7GAFVQ#comments</link><content:encoded><![CDATA[Dear John,<br><br>Thanks for posting. It works beautifully with db2 on AS/400 and good tip by Scott Blaylock. This kind of posting will be very helpful in making Lotus Notes/Domino Successful.<br><br>Best Regards<br><br>Atul Saxena]]></content:encoded><dc:creator>Atul Saxena</dc:creator><guid isPermaLink="false">http://www.jmackey.net/groupwareinc/johnblog/johnblog.nsf/d6plinks/GROC-7GAFVQ</guid><pubDate>Mon, 26 Apr 2010 09:48:34 AM -0700</pubDate></item><item><title>Comment From Cam</title><link>http://www.jmackey.net/groupwareinc/johnblog/johnblog.nsf/d6plinks/GROC-7GLFZG#comments</link><content:encoded><![CDATA[Hi John,<br>Thanks for the good article, i need to execute client side code in Server side code, It´s possible?<br>Other question, do you know if i can process checkboxes porperties view in a Client side code (Like getSeelectedIds on Server side)?<br><br>Thanks a lot.]]></content:encoded><dc:creator>Cam</dc:creator><guid isPermaLink="false">http://www.jmackey.net/groupwareinc/johnblog/johnblog.nsf/d6plinks/GROC-7GLFZG</guid><pubDate>Tue, 20 Apr 2010 03:08:20 PM -0700</pubDate></item><item><title>Comment From Pooja</title><link>http://www.jmackey.net/groupwareinc/johnblog/johnblog.nsf/d6plinks/XPages_tip_gotoPage_View_Pager#comments</link><content:encoded><![CDATA[hiiii
<br>its really nice of u.u helped me alot.cn u pls tell me how to create response document and how to link it to parent document.all the properties of it.m stuck dere.
<br>
<br>Thanku<img src="/groupwareinc/johnblog/johnblog.nsf/2/DLYH-5MZVLY/$File/smile.gif"> 
<br>]]></content:encoded><dc:creator>Pooja</dc:creator><guid isPermaLink="false">http://www.jmackey.net/groupwareinc/johnblog/johnblog.nsf/d6plinks/XPages_tip_gotoPage_View_Pager</guid><pubDate>Mon, 19 Apr 2010 02:30:01 AM -0700</pubDate></item><item><title>Comment From Karthick</title><link>http://www.jmackey.net/groupwareinc/johnblog/johnblog.nsf/d6plinks/GROC-7GAFVQ#comments</link><content:encoded><![CDATA[Hi John,<br>   This is very helpful. I followed all the steps and eventually things work fine for me.<br><br> When I attempted it the second time, I started facing the issue that was mentioned by Laura - the javaMethods package under the source which I create is forced under Local. <br><br>Proceeding further, creating the package and the java file under local, and dragging and dropping the same under the source folder <b>works </b>.<br><br>But is there any fix to this?... Am I missing some thing?<br><br>thanks,<br>Karthick]]></content:encoded><dc:creator>Karthick</dc:creator><guid isPermaLink="false">http://www.jmackey.net/groupwareinc/johnblog/johnblog.nsf/d6plinks/GROC-7GAFVQ</guid><pubDate>Fri, 16 Apr 2010 06:19:04 AM -0700</pubDate></item><item><title>Comment From Sudatta </title><link>http://www.jmackey.net/groupwareinc/johnblog/johnblog.nsf/d6plinks/GROC-7GLFZG#comments</link><content:encoded><![CDATA[Hi, 
<br>
<br>I'm trying to execute server side javascript using client side javascript like the below example: 
<br>
<br>var test = '#{javascript: @DbName();}';
<br>alert (test);
<br>
<br>This works fine when i write this code under a button in an xpage in the client side tab.
<br>
<br><b>However, here is the pain area : 
<br>I'm using a client side javascript library and included that in the xpage : and in that i'm trying to execute the code on the dojo onClick event using dojo.Connect but it does not execute the code and gives the alert as "'#{javascript: @DbName();}'" for the below code: 
<br>
<br>var test = '#{javascript: @DbName();}';
<br>alert (test);
<br>
<br>Please let me know if what needs to be done in order to make this work properly...</b>
<br>
<br>Thanks in advance for the help.
<br>
<br>
<br>
<br>
<br>
<br>]]></content:encoded><dc:creator>Sudatta </dc:creator><guid isPermaLink="false">http://www.jmackey.net/groupwareinc/johnblog/johnblog.nsf/d6plinks/GROC-7GLFZG</guid><pubDate>Wed, 14 Apr 2010 09:35:13 AM -0700</pubDate></item><item><title>Comment From Alok Kumar</title><link>http://www.jmackey.net/groupwareinc/johnblog/johnblog.nsf/d6plinks/GROC-7G9GT4#comments</link><content:encoded><![CDATA[Nice article. It really gave us a lot of information. We were trying to get information on some subject which is related to this to an extent for last couple of days and this article really helped us. ]]></content:encoded><dc:creator>Alok Kumar</dc:creator><guid isPermaLink="false">http://www.jmackey.net/groupwareinc/johnblog/johnblog.nsf/d6plinks/GROC-7G9GT4</guid><pubDate>Wed, 14 Apr 2010 06:25:22 AM -0700</pubDate></item><item><title>Comment From chenybin</title><link>http://www.jmackey.net/groupwareinc/johnblog/johnblog.nsf/d6plinks/XPages_Dynamic_View_OpenNTF#comments</link><content:encoded><![CDATA[if the view has catagory column,have any suggestions？]]></content:encoded><dc:creator>chenybin</dc:creator><guid isPermaLink="false">http://www.jmackey.net/groupwareinc/johnblog/johnblog.nsf/d6plinks/XPages_Dynamic_View_OpenNTF</guid><pubDate>Wed, 7 Apr 2010 10:12:23 AM -0700</pubDate></item><item><title>Comment From tülin</title><link>http://www.jmackey.net/groupwareinc/johnblog/johnblog.nsf/d6plinks/GROC-7G3GF7#comments</link><content:encoded><![CDATA[Hi Mr. Mackey. 
<br>I have a question. I want multi file upload only one db. But how? Can you help me?
<br>]]></content:encoded><dc:creator>tülin</dc:creator><guid isPermaLink="false">http://www.jmackey.net/groupwareinc/johnblog/johnblog.nsf/d6plinks/GROC-7G3GF7</guid><pubDate>Tue, 6 Apr 2010 11:30:42 AM -0700</pubDate></item><item><title>Comment From Harry Mamba</title><link>http://www.jmackey.net/groupwareinc/johnblog/johnblog.nsf/d6plinks/SurveyToolSample#comments</link><content:encoded><![CDATA[Hi,
<br>
<br>Nice tool, I'm just starting to learn Lotus Domino, Notes and Quickr. I downloaded the .nsf file provided on your link. My question is, how can I make it to work? Where do I start? 
<br>
<br>Hoping you can help me with this. 
<br>
<br>Thank you.
<br>
<br>Regards,
<br>Harry]]></content:encoded><dc:creator>Harry Mamba</dc:creator><guid isPermaLink="false">http://www.jmackey.net/groupwareinc/johnblog/johnblog.nsf/d6plinks/SurveyToolSample</guid><pubDate>Mon, 29 Mar 2010 01:04:21 AM -0700</pubDate></item></channel>
</rss>
