<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0">
	<channel>
		<title><![CDATA[Messages posted by "philip.breau"]]></title>
		<link>http://jforum.icesoft.org/JForum/posts/listByUser/260.page</link>
		<description><![CDATA[Messages posted by "philip.breau"]]></description>
		<generator>JForum - http://www.jforum.net</generator>
			<item>
				<title>Re:Problem with gmap Icefaces 3</title>
				<description><![CDATA[ Hi,

We have a new ace gmap v3 component planned for ICEfaces 3.1. 

http://jira.icesoft.org/browse/ICE-7826

But I think you can, in fact, still get keys for v2, even though it's deprecated. I just tried, and it gave me one for v2. 

Philip]]></description>
				<guid isPermaLink="true">http://jforum.icesoft.org/JForum/posts/preList/20758/73241.page#73241</guid>
				<link>http://jforum.icesoft.org/JForum/posts/preList/20758/73241.page#73241</link>
				<pubDate><![CDATA[Tue, 17 Apr 2012 15:06:51]]> GMT</pubDate>
				<author><![CDATA[ philip.breau]]></author>
			</item>
			<item>
				<title>Re:Slider doesnt work</title>
				<description><![CDATA[ I think the '@' qualifier is only meant for keywords like @all, @this, and @none. Try render="@all". ICEfaces D2D will intercept it and only update what's necessary anyway.

Philip]]></description>
				<guid isPermaLink="true">http://jforum.icesoft.org/JForum/posts/preList/20761/73240.page#73240</guid>
				<link>http://jforum.icesoft.org/JForum/posts/preList/20761/73240.page#73240</link>
				<pubDate><![CDATA[Tue, 17 Apr 2012 14:57:21]]> GMT</pubDate>
				<author><![CDATA[ philip.breau]]></author>
			</item>
			<item>
				<title>Re:Confirmation dialog shows false code behind</title>
				<description><![CDATA[ What version are you using? Do you see the same issue in other browsers?]]></description>
				<guid isPermaLink="true">http://jforum.icesoft.org/JForum/posts/preList/20754/73239.page#73239</guid>
				<link>http://jforum.icesoft.org/JForum/posts/preList/20754/73239.page#73239</link>
				<pubDate><![CDATA[Tue, 17 Apr 2012 14:49:07]]> GMT</pubDate>
				<author><![CDATA[ philip.breau]]></author>
			</item>
			<item>
				<title>Re:ice:inputText values not updating properly</title>
				<description><![CDATA[ It might just be that the submittedValues on the components are still overriding the values you're setting.

http://stackoverflow.com/questions/260094/jsf-getvalue-v-s-getsubmittedvalue

Try grabbing a reference to the form component and clearing the child components. They should be rebuilt before the page is re-rendered and the component state will be cleared.

<span class="genmed"><b>Code:</b></span><br>
		<div style="overflow: auto; width: 100%;">
		<pre>
UIComponent form = FacesContext.getCurrentInstance&#40;&#41;.getViewRoot&#40;&#41;.findComponent&#40;"myForm"&#41;;
if&#40; form != null &#41;{
   form.getChildren&#40;&#41;.clear&#40;&#41;;
}
</pre>
		</div>

Philip]]></description>
				<guid isPermaLink="true">http://jforum.icesoft.org/JForum/posts/preList/20776/73226.page#73226</guid>
				<link>http://jforum.icesoft.org/JForum/posts/preList/20776/73226.page#73226</link>
				<pubDate><![CDATA[Mon, 16 Apr 2012 07:38:06]]> GMT</pubDate>
				<author><![CDATA[ philip.breau]]></author>
			</item>
			<item>
				<title>Re:ICEfaces 1.8.2 Composite Component slider usage - Its not displaying on screen.</title>
				<description><![CDATA[ I would suggest first checking the rendered HTML and seeing what's rendered for the &lt;ice-cc:slider&gt; tag. If you just see the tag itself, then you know the EE comps library isn't being loaded. 

Philip]]></description>
				<guid isPermaLink="true">http://jforum.icesoft.org/JForum/posts/preList/20690/73042.page#73042</guid>
				<link>http://jforum.icesoft.org/JForum/posts/preList/20690/73042.page#73042</link>
				<pubDate><![CDATA[Wed, 28 Mar 2012 07:53:56]]> GMT</pubDate>
				<author><![CDATA[ philip.breau]]></author>
			</item>
			<item>
				<title>Re:Icefaces 3 PanelPopup bug</title>
				<description><![CDATA[ ICEfaces 3.0.1 should be available around the end of this month.

Thanks,
Philip]]></description>
				<guid isPermaLink="true">http://jforum.icesoft.org/JForum/posts/preList/20502/72400.page#72400</guid>
				<link>http://jforum.icesoft.org/JForum/posts/preList/20502/72400.page#72400</link>
				<pubDate><![CDATA[Tue, 14 Feb 2012 08:15:53]]> GMT</pubDate>
				<author><![CDATA[ philip.breau]]></author>
			</item>
			<item>
				<title>Re:Problems including widget in my page</title>
				<description><![CDATA[ Looks like you have a google analytics script between the HTML and HEAD tag. You'll probably want to move that to just above the ending BODY tag. I would also move the style tag that's between the BODY and ending HTML tag to the head.

Philip]]></description>
				<guid isPermaLink="true">http://jforum.icesoft.org/JForum/posts/preList/20527/72398.page#72398</guid>
				<link>http://jforum.icesoft.org/JForum/posts/preList/20527/72398.page#72398</link>
				<pubDate><![CDATA[Tue, 14 Feb 2012 07:11:03]]> GMT</pubDate>
				<author><![CDATA[ philip.breau]]></author>
			</item>
			<item>
				<title>Re:Problems including widget in my page</title>
				<description><![CDATA[ You probably just have an issue with your templates. I'd suggest just trying to work your way down from the page template to your inner templates with test output to make sure you have things defined ok:

<span class="genmed"><b>Code:</b></span><br>
		<div style="overflow: auto; width: 100%;">
		<pre>&lt;ui:define name="center"&gt;
     Test center
     ....
     &lt;ui:define name="center-all"&gt;
          Test center-all
          ...

</pre>
		</div>


Philip
]]></description>
				<guid isPermaLink="true">http://jforum.icesoft.org/JForum/posts/preList/20527/72385.page#72385</guid>
				<link>http://jforum.icesoft.org/JForum/posts/preList/20527/72385.page#72385</link>
				<pubDate><![CDATA[Mon, 13 Feb 2012 14:51:14]]> GMT</pubDate>
				<author><![CDATA[ philip.breau]]></author>
			</item>
			<item>
				<title>Re:With panelTab how can I stay connected to Bean while switching tabs?</title>
				<description><![CDATA[ You're already passing the book id parameter in the commandLink. Maybe just try using a viewParam in your book.xhtml page. 

http://mkblog.exadel.com/2010/07/learning-jsf2-page-params-and-page-actions/

Philip]]></description>
				<guid isPermaLink="true">http://jforum.icesoft.org/JForum/posts/preList/20494/72368.page#72368</guid>
				<link>http://jforum.icesoft.org/JForum/posts/preList/20494/72368.page#72368</link>
				<pubDate><![CDATA[Mon, 13 Feb 2012 10:37:28]]> GMT</pubDate>
				<author><![CDATA[ philip.breau]]></author>
			</item>
			<item>
				<title>Re:Icefaces 3 PanelPopup bug</title>
				<description><![CDATA[ Thanks for reporting this. I've created a jira for it, and a fix.

http://jira.icefaces.org/browse/ICE-7760

Should be available shortly in svn and in 3.0.1.

Thanks!
Philip]]></description>
				<guid isPermaLink="true">http://jforum.icesoft.org/JForum/posts/preList/20502/72366.page#72366</guid>
				<link>http://jforum.icesoft.org/JForum/posts/preList/20502/72366.page#72366</link>
				<pubDate><![CDATA[Mon, 13 Feb 2012 09:48:25]]> GMT</pubDate>
				<author><![CDATA[ philip.breau]]></author>
			</item>
			<item>
				<title>Re:ice:panelPositioned not working vertically</title>
				<description><![CDATA[ Hi,
    Try removing the 'display:inline' and just set the constraint="vertical" attribute on the panelPositioned tag.

Thanks.
Philip]]></description>
				<guid isPermaLink="true">http://jforum.icesoft.org/JForum/posts/preList/20409/72284.page#72284</guid>
				<link>http://jforum.icesoft.org/JForum/posts/preList/20409/72284.page#72284</link>
				<pubDate><![CDATA[Fri, 10 Feb 2012 11:45:24]]> GMT</pubDate>
				<author><![CDATA[ philip.breau]]></author>
			</item>
			<item>
				<title>Re:Tips: Resolving ICEpdf applet exception</title>
				<description><![CDATA[ Great tips. Thanks!]]></description>
				<guid isPermaLink="true">http://jforum.icesoft.org/JForum/posts/preList/20455/72283.page#72283</guid>
				<link>http://jforum.icesoft.org/JForum/posts/preList/20455/72283.page#72283</link>
				<pubDate><![CDATA[Fri, 10 Feb 2012 11:40:07]]> GMT</pubDate>
				<author><![CDATA[ philip.breau]]></author>
			</item>
			<item>
				<title>Re:ice:panelBorder resize height to full browser height dinamically</title>
				<description><![CDATA[ Hi,
    Can you try the css: .icePnlBrdrWest{ height: 100%; } .

Thanks,
Philip]]></description>
				<guid isPermaLink="true">http://jforum.icesoft.org/JForum/posts/preList/3810/72282.page#72282</guid>
				<link>http://jforum.icesoft.org/JForum/posts/preList/3810/72282.page#72282</link>
				<pubDate><![CDATA[Fri, 10 Feb 2012 11:39:32]]> GMT</pubDate>
				<author><![CDATA[ philip.breau]]></author>
			</item>
			<item>
				<title>Re:CommandSortHeader column alignment problem</title>
				<description><![CDATA[ Hi,
     Where are you setting the center alignment? Your css might need to take into account the 'iceDatTblActvSrtHdr' css class put onto the th element of the active header column.

Thanks,
Philip]]></description>
				<guid isPermaLink="true">http://jforum.icesoft.org/JForum/posts/preList/20449/72281.page#72281</guid>
				<link>http://jforum.icesoft.org/JForum/posts/preList/20449/72281.page#72281</link>
				<pubDate><![CDATA[Fri, 10 Feb 2012 11:36:34]]> GMT</pubDate>
				<author><![CDATA[ philip.breau]]></author>
			</item>
			<item>
				<title>Re:How does one use HtmlInputText?</title>
				<description><![CDATA[ Could you post your code? 

Thanks,
Philip]]></description>
				<guid isPermaLink="true">http://jforum.icesoft.org/JForum/posts/preList/20443/72280.page#72280</guid>
				<link>http://jforum.icesoft.org/JForum/posts/preList/20443/72280.page#72280</link>
				<pubDate><![CDATA[Fri, 10 Feb 2012 11:33:13]]> GMT</pubDate>
				<author><![CDATA[ philip.breau]]></author>
			</item>
	</channel>
</rss>
