<?xml version="1.0" encoding="ISO-8859-1"?>
<?xml-stylesheet type="text/xsl" href="http://iqjam.net/iqjam/iqjam.nsf/rsstransform.xslt"?>
<rss version="2.0">
<channel>
	<language>en-us</language>
	<lastBuildDate>Tue, 21 May 2013 09:30:42 +0000</lastBuildDate>
	<title>IQJam by Elguji Software (Domino Development / XPages answers)</title>
	<description>An RSS feed generated by IQJam by Elguji Software</description>
	<link>http://iqjam.net/iqjam/iqjam.nsf</link>
	<image>
	    <title>IQJam by Elguji Software (Domino Development / XPages answers)</title>
	    <url>http://iqjam.net/iqjam/iqjam.nsf</url>
	    <link></link>
	</image>
	<item>
		<pubDate>Wed, 28 Nov 2012 10:34:27 +0000</pubDate>
		<title>re: How to call LS agent in xpage</title>
		<description>&lt;b&gt;Author:&lt;/b&gt; Vijay Kumar&lt;br /&gt;&lt;b&gt;Answer:&lt;/b&gt; var agent:NotesAgent=database.getAgent("LotusorJavaAgent"); agent.runWithDocumentContext(currentDocument.getDocument(true)); //You can process the document here 
context.reloadPage()&lt;br /&gt;</description>
		<link>http://iqjam.net/iqjam/iqjam.nsf/questions/20120719_How_to_call_LS_agent_in_xpage.htm?#7543FA961D1F6F3380257AC4003A1629</link>
	</item>
	<item>
		<pubDate>Thu, 11 Oct 2012 22:19:19 +0000</pubDate>
		<title>re: Multi-values in an xPage view panel column</title>
		<description>&lt;b&gt;Author:&lt;/b&gt; Judy Kilpinen&lt;br /&gt;&lt;b&gt;Answer:&lt;/b&gt; Thanks Tommy, this was the only thing that worked for me. I found I needed to add a test first to see if the value was an array, otherwise the browser would toss up an error: &lt;xp:this.getAsString&gt; &lt;![CDATA[#{javascript:value.constructor == Array ? value.join('&lt;br/&gt;'): value;}&#93;&#93;&gt;&lt;/xp:this.getAsString&gt;&lt;br /&gt;</description>
		<link>http://iqjam.net/iqjam/iqjam.nsf/questions/20101201_Multi-values_in_an_xPage_view_.htm?#4C406F6DC5500F7F88257A940075204B</link>
	</item>
	<item>
		<pubDate>Fri, 02 Dec 2011 09:07:22 +0000</pubDate>
		<title>re: RichText field with default value doesn't save the data to the document.</title>
		<description>&lt;b&gt;Author:&lt;/b&gt; Martin Meijer&lt;br /&gt;&lt;b&gt;Answer:&lt;/b&gt; This is a bug, see my  Blogitem&lt;br /&gt;</description>
		<link>http://iqjam.net/iqjam/iqjam.nsf/questions/20111125_RichText_field_with_default_va.htm?#2C4F8558FEF43F704A25795A00321D34</link>
	</item>
	<item>
		<pubDate>Wed, 02 Nov 2011 13:21:15 +0000</pubDate>
		<title>re: From CSJS refresh a panel dijit.TooltipDialog</title>
		<description>&lt;b&gt;Author:&lt;/b&gt; daniele grillo&lt;br /&gt;&lt;b&gt;Answer:&lt;/b&gt; Resolved: The really problem is the target node of dijit widjet. Now work weel!&lt;br /&gt;</description>
		<link>http://iqjam.net/iqjam/iqjam.nsf/questions/20111102_From_CSJS_refresh_a_panel_diji.htm?#11620211519B302A4A25793C00495B79</link>
	</item>
	<item>
		<pubDate>Thu, 18 Aug 2011 20:11:31 +0000</pubDate>
		<title>re: How to get value from Repeater Control.</title>
		<description>&lt;b&gt;Author:&lt;/b&gt; Atul Saxena&lt;br /&gt;&lt;b&gt;Answer:&lt;/b&gt; I simulated something for you, please review solution.jpg, I will reply you accordingly.&lt;br /&gt;</description>
		<link>http://iqjam.net/iqjam/iqjam.nsf/questions/20110331_How_to_get_value_from_Repeater.htm?#1A06B2D186DC6424882578F000696CC4</link>
	</item>
	<item>
		<pubDate>Thu, 28 Jul 2011 17:39:30 +0000</pubDate>
		<title>re: doing a partial update "beforepageload"</title>
		<description>&lt;b&gt;Author:&lt;/b&gt; jeroen somhorst&lt;br /&gt;&lt;b&gt;Answer:&lt;/b&gt; You could use the request/sessionscope to set values you want to appear on your components. If the components value somehow is calculated in a partial refresh you should consider changing the design of your custom control. But to give you a reasonable answer I would like to know first what sort of control you are creating.. Why does it need this 'partial refresh'.?&lt;br /&gt;</description>
		<link>http://iqjam.net/iqjam/iqjam.nsf/questions/20110209_doing_a_partial_update_%22before.htm?#DC96F93B5B7EC658CA2578DB005B81CA</link>
	</item>
	<item>
		<pubDate>Thu, 28 Jul 2011 17:36:02 +0000</pubDate>
		<title>re: How to get value from Repeater Control.</title>
		<description>&lt;b&gt;Author:&lt;/b&gt; jeroen somhorst&lt;br /&gt;&lt;b&gt;Answer:&lt;/b&gt; What you could do is the use the functionality the JSF framework ( on which xpages is build ). The context global can be used to retrieve the request ( getRequest() if im not mistaken ) . In this request exists a method ( getParameterMap()) which contains all the parameters that where send with the request. Simple iterating over this map will return all the submitted values. This map contains ALL fields that where available at the time of the submit. So the fields generated by the repeater are also available. The only thing you would need to know are: The ID generated for the repeater by xPages ( something like &lt;viewID&gt;:&lt;repeatID&gt; use firebug to see the generated ID&#347;). the ID's that where generated from the editboxes inside the repeat. These id&#347; correspond with keys in the parameter map. Simple reading the values and do a document.replaceItemValue("field",value). Would do the trick here. It is not as easy as you would expect with notes development but it is an option you can consider&lt;br /&gt;</description>
		<link>http://iqjam.net/iqjam/iqjam.nsf/questions/20110331_How_to_get_value_from_Repeater.htm?#1E706BC26A377ED7CA2578DB005B30B8</link>
	</item>
	<item>
		<pubDate>Wed, 01 Jun 2011 16:34:13 +0000</pubDate>
		<title>re: How to get value from Repeater Control.</title>
		<description>&lt;b&gt;Author:&lt;/b&gt; Mervin Thomas&lt;br /&gt;&lt;b&gt;Answer:&lt;/b&gt; Hi Vikas, 
  The scope of row variable of a repeat control is within the repeat control only. You will not be able to access from outside it. Alternatively you can set the variables to scoped variables (requestScope, viewScope or sessionScope) and get it outside your repeat Control. Hope this helps. Mervin&lt;br /&gt;</description>
		<link>http://iqjam.net/iqjam/iqjam.nsf/questions/20110331_How_to_get_value_from_Repeater.htm?#62A90BC35DBEB846CA2578A2005587F8</link>
	</item>
	<item>
		<pubDate>Thu, 12 May 2011 23:16:42 +0000</pubDate>
		<title>re: Where Would I Delete My Cookie?</title>
		<description>&lt;b&gt;Author:&lt;/b&gt; Lenni Sauve&lt;br /&gt;&lt;b&gt;Answer:&lt;/b&gt; One of our web team helped me with this! Where I call the help document, I needed to move the set cookie up before calling the dijit.Dialog. And then, after dialog.show(); I needed to add the following line: setCookie('form', null, 0) That did it!&lt;br /&gt;</description>
		<link>http://iqjam.net/iqjam/iqjam.nsf/questions/20110513_Where_Would_I_Delete_My_Cookie.htm?#508F4E734809C409CA25788E007A6124</link>
	</item>
	<item>
		<pubDate>Thu, 31 Mar 2011 20:29:07 +0000</pubDate>
		<title>re: Query_String value empty with agent URL from xpage</title>
		<description>&lt;b&gt;Author:&lt;/b&gt; Andy Cunliffe&lt;br /&gt;&lt;b&gt;Answer:&lt;/b&gt; You should be able to use an ampersand to separate the query string values, but if the editor is complaining try using  &amp;amp; or  &amp;#38; instead.&lt;br /&gt;</description>
		<link>http://iqjam.net/iqjam/iqjam.nsf/questions/20110203_Query_String_value_empty_with_.htm?#9BA38D3912EDD54886257864006B0971</link>
	</item>
	<item>
		<pubDate>Wed, 30 Mar 2011 14:06:56 +0000</pubDate>
		<title>re: Query_String value empty with agent URL from xpage</title>
		<description>&lt;b&gt;Author:&lt;/b&gt; Matt White&lt;br /&gt;&lt;b&gt;Answer:&lt;/b&gt; Ben is absolutely correct, the format of URL you want to be building is ...?openagent&amp;param1=1&amp;param2=2 
There is absolutely no issue with this format of URL with XPages.&lt;br /&gt;</description>
		<link>http://iqjam.net/iqjam/iqjam.nsf/questions/20110203_Query_String_value_empty_with_.htm?#BF78CE2D8B3D13CC8625786300480BD0</link>
	</item>
	<item>
		<pubDate>Wed, 30 Mar 2011 09:17:29 +0000</pubDate>
		<title>re: Query_String value empty with agent URL from xpage</title>
		<description>&lt;b&gt;Author:&lt;/b&gt; Ben Poole&lt;br /&gt;&lt;b&gt;Answer:&lt;/b&gt; The additional "?" characters are the problem. You can only have one in your URL, and that signals the start of the QueryString to the server. Your arguments should then be supplied using the ampersand / equals combination you mention when you test the agent manually. As to why Domino won't permit this format, I'm not sure; perhaps someone else who knows XPages can clarify?&lt;br /&gt;</description>
		<link>http://iqjam.net/iqjam/iqjam.nsf/questions/20110203_Query_String_value_empty_with_.htm?#E25A1EC652DD17B586257863002D8C03</link>
	</item>
	<item>
		<pubDate>Wed, 30 Mar 2011 09:15:00 +0000</pubDate>
		<title>re: textfield formatting</title>
		<description>&lt;b&gt;Author:&lt;/b&gt; Ben Poole&lt;br /&gt;&lt;b&gt;Answer:&lt;/b&gt; There's a client side jQuery plugin which lets you set up, and enforce, various input masking options:  Masked Input Plugin  Perhaps there's a Dojo equivalent?&lt;br /&gt;</description>
		<link>http://iqjam.net/iqjam/iqjam.nsf/questions/20101029_textfield_formatting.htm?#EAD6FCCC01093A4B86257863002D51E8</link>
	</item>
	<item>
		<pubDate>Tue, 29 Mar 2011 21:13:45 +0000</pubDate>
		<title>re: File Upload/File Download using Managed Beans</title>
		<description>&lt;b&gt;Author:&lt;/b&gt; Toby Samples&lt;br /&gt;&lt;b&gt;Answer:&lt;/b&gt; Thanks so much Andy, I think I was having some issues with my mental faculties...the problem was I had both 
import com.ibm.xsp.component.UIFileuploadEx.UploadedFile; import com.ibm.xsp.http.UploadedFile; running and it was giving me an error because of collision. I was doing everything right, but the imports were colliding. Thanks for helping me out. You went above and beyond. Thanks so much!!!&lt;br /&gt;</description>
		<link>http://iqjam.net/iqjam/iqjam.nsf/questions/20110210_File_UploadFile_Download_usin.htm?#A36099732D1A54AC86257862006F1F71</link>
	</item>
	<item>
		<pubDate>Tue, 29 Mar 2011 20:46:55 +0000</pubDate>
		<title>re: File Upload/File Download using Managed Beans</title>
		<description>&lt;b&gt;Author:&lt;/b&gt; Andy Cunliffe&lt;br /&gt;&lt;b&gt;Answer:&lt;/b&gt; Hi Toby, 
  I've created an example database you can download from  here .&lt;br /&gt;</description>
		<link>http://iqjam.net/iqjam/iqjam.nsf/questions/20110210_File_UploadFile_Download_usin.htm?#E38F76B204E62EC186257862006CAABB</link>
	</item>
	<item>
		<pubDate>Tue, 29 Mar 2011 08:55:01 +0000</pubDate>
		<title>re: checkBoxGroup</title>
		<description>&lt;b&gt;Author:&lt;/b&gt; Paul Hannan&lt;br /&gt;&lt;b&gt;Answer:&lt;/b&gt; I don't think the UI was there in 851 for you to do this easily. So how to do it? What you need to do is Add Formula Items for the values, and as the UI isn't there in 851 to do this (it is in 852) on the checkBoxGroup and radioGroup. Do this instead on a List Box control. Then once finished change the tags from xp:listBox to xp:checkBoxGroup. And you're done. p.&lt;br /&gt;</description>
		<link>http://iqjam.net/iqjam/iqjam.nsf/questions/20110131_checkBoxGroup.htm?#23EEB83777284CD686257862002B7D4B</link>
	</item>
	<item>
		<pubDate>Mon, 28 Mar 2011 22:13:41 +0000</pubDate>
		<title>re: File Upload/File Download using Managed Beans</title>
		<description>&lt;b&gt;Author:&lt;/b&gt; Toby Samples&lt;br /&gt;&lt;b&gt;Answer:&lt;/b&gt; Hi Andy, 
I saw your blog post about this, I am having problems using this method, I can't make an instance of that class a member of my class. I believe the reason is because it is static, can you send me a sample of how you were able to bind this? Thanks 
-Toby&lt;br /&gt;</description>
		<link>http://iqjam.net/iqjam/iqjam.nsf/questions/20110210_File_UploadFile_Download_usin.htm?#BD7F0A0319F90BD68625786100749C46</link>
	</item>
	<item>
		<pubDate>Wed, 23 Mar 2011 03:02:47 +0000</pubDate>
		<title>re: Design Updates have no effect</title>
		<description>&lt;b&gt;Author:&lt;/b&gt; Bruce Elgort&lt;br /&gt;&lt;b&gt;Answer:&lt;/b&gt; Have you tried 8.5.2 at all?&lt;br /&gt;</description>
		<link>http://iqjam.net/iqjam/iqjam.nsf/questions/20110228_Design_Updates_have_no_effect.htm?#1E127E36190DAE098625785C0010BC38</link>
	</item>
	<item>
		<pubDate>Wed, 23 Mar 2011 02:51:26 +0000</pubDate>
		<title>re: Design Updates have no effect</title>
		<description>&lt;b&gt;Author:&lt;/b&gt; Bruce Elgort&lt;br /&gt;&lt;b&gt;Answer:&lt;/b&gt; Still no answers for this?&lt;br /&gt;</description>
		<link>http://iqjam.net/iqjam/iqjam.nsf/questions/20110228_Design_Updates_have_no_effect.htm?#CF43AA2B023A4D478625785C000FB230</link>
	</item>
	<item>
		<pubDate>Wed, 09 Mar 2011 11:27:14 +0000</pubDate>
		<title>re: File Upload/File Download using Managed Beans</title>
		<description>&lt;b&gt;Author:&lt;/b&gt; Andy Cunliffe&lt;br /&gt;&lt;b&gt;Answer:&lt;/b&gt; I've have had this working by declaring the file object as: com.ibm.xsp.component.UIFileUploadEx.UploadedFile&lt;br /&gt;</description>
		<link>http://iqjam.net/iqjam/iqjam.nsf/questions/20110210_File_UploadFile_Download_usin.htm?#A42EFC65BC240B3C8625784E003EEB09</link>
	</item>
</channel></rss>
