inputHtml

2010-09-20 Thread Ken McArthur
Hi, Has anyone successfully used Tomahawk inputHtml with MyFaces implementation 1.2.5, Tomahawk 12-1.1.9, and Facelets 1.1.15? When I try something simple like: t:inputHtml id=page_content_value1 valueChangeListener=#{pageContentAction.valueChange}

Re: inputHtml

2008-02-07 Thread Ken McArthur
use the tomahawk issue tracker. regards, Martin On Feb 7, 2008 1:54 AM, Ken McArthur [EMAIL PROTECTED] wrote: Martin, Issue key = myfaces-1813 Thanks again and have a great day, Ken On Feb 6, 2008 5:21 PM, Martin Marinschek [EMAIL PROTECTED

Re: inputHtml

2008-02-06 Thread Ken McArthur
it. regards, Martin On Feb 5, 2008 4:54 AM, Ken McArthur [EMAIL PROTECTED] wrote: Attempting to upgrade from myfaces 1.1.5 to 1.2.2 and all works great except for inputHtml. Using myfaces 1.2.2, tomahawk 1.1.6, facelets 1.1.13. Get the following exception in the rendering

Re: inputHtml

2008-02-06 Thread Ken McArthur
Martin, Issue key = myfaces-1813 Thanks again and have a great day, Ken On Feb 6, 2008 5:21 PM, Martin Marinschek [EMAIL PROTECTED] wrote: http://myfaces.apache.org/issue-tracking.html regards, Martin On Feb 7, 2008 1:08 AM, Ken McArthur [EMAIL PROTECTED] wrote: Martin, That's

inputHtml

2008-02-04 Thread Ken McArthur
Attempting to upgrade from myfaces 1.1.5 to 1.2.2 and all works great except for inputHtml. Using myfaces 1.2.2, tomahawk 1.1.6, facelets 1.1.13. Get the following exception in the rendering facelets phases: Caused by: java.lang.ClassCastException: java.lang.Class at

javax.faces.ViewState contents?

2007-08-23 Thread Ken McArthur
With client state saving, I was under the impression that only managed beans in session scope or used in t:saveState would be serialized into the hidden javax.faces.ViewState variable. However, my application's creating ViewStates in pages with very simple forms that are almost 70 kb long! I'm

Re: javax.faces.ViewState contents?

2007-08-23 Thread Ken McArthur
that is returned from saveState on any object implementing StateHolder is saved into the view state. (All UIComponents implement StateHolder) On 8/23/07, Ken McArthur [EMAIL PROTECTED] wrote: With client state saving, I was under the impression that only managed beans in session scope or used

Re: javax.faces.ViewState contents?

2007-08-23 Thread Ken McArthur
Great advise, I'll try it all and update board when I figure it out. Thanks. On 8/23/07, Mario Ivankovits [EMAIL PROTECTED] wrote: Hi! With client state saving, I was under the impression that only managed beans in session scope or used in t:saveState would be serialized into the hidden

Re: javax.faces.ViewState contents?

2007-08-23 Thread Ken McArthur
into server side state saving. Ken On 8/23/07, Ken McArthur [EMAIL PROTECTED] wrote: Great advise, I'll try it all and update board when I figure it out. Thanks. On 8/23/07, Mario Ivankovits [EMAIL PROTECTED] wrote: Hi! With client state saving, I was under the impression that only managed

jscookMenu target attribute

2007-07-24 Thread Ken McArthur
It would seem normal to have a link in a dropdown menu to a url (i.e. not an action but http://... ) where target=_self or _parent in navigationMenuItem so that target is loaded in current frame. However, target attribute is ignored in this circumstance so page is always loaded in new frame.

Re: jscookMenu target attribute

2007-07-24 Thread Ken McArthur
Found answer in another posting: t:navigationMenuItem itemLabel=home action='javascript:window.open (/smile/p.xhtml,_self)'/ Thanks, Ken On 7/24/07, Ken McArthur [EMAIL PROTECTED] wrote: It would seem normal to have a link in a dropdown menu to a url (i.e. not an action but http

Re: [Solved] GraphicImage Question

2007-02-22 Thread Ken McArthur
Michael, Here's another option you can try that I've used successfully. Store images in a database and create a PhaseListener to retrieve image and output the content. Ken On 2/22/07, m1380103 [EMAIL PROTECTED] wrote: Oh yeah of course. Can't believe I got stuck on this problem without

jscookMenu with outputLink

2007-01-31 Thread Ken McArthur
Hi, Is there any way to use jscookMenu with a basic url instead of having to declare an action navigation rule? Thanks for great stuff, Ken

jscookMenu with outputLink?

2007-01-31 Thread Ken McArthur
Hi, Is there any way to use jscookMenu with a basic url instead of having to declare an action navigation rule? Thanks, Ken

Re: t:inputHtml not working in IE

2006-11-30 Thread Ken McArthur
PROTECTED] wrote: can the inputHtml editor add video/audio, eg. object? in text editor mode. It did not work form me. Any one experiencing this issue? *Ken McArthur [EMAIL PROTECTED]* wrote: Stefan, In case this still helps you or anyone else, I've just had the same experienced. For some

Re: t:inputHtml not working in IE

2006-11-23 Thread Ken McArthur
Stefan, In case this still helps you or anyone else, I've just had the same experienced. For some reason adding a hight style attribute to inputHtml fixed rendering problem in IE. t:inputHtml style=height: 350px; ... Ken On 8/8/06, Stefan Frank [EMAIL PROTECTED] wrote: Hi Andrew, Thx

submit or fix inputHtml bug?

2006-06-21 Thread Ken McArthur
Hi, Must thank you all for great product. Through Tomahawk 1.1.3 I've noticed a minor issue with inputHtml. Tomahawk logs following error: - Unable to find resource resource/kupudrawers/kupublank.html for component inputHtml.InputHtmlRenderer. Check that this file is available in the classpath

Re: Tomcat 5.5.16 problem

2006-05-11 Thread Ken McArthur
Try removing a couple of jar files from WEB-INF/lib of the application in webapp.I'm pretty sure one of them is commons-el-1.0.jar. Don't remember the other one but the MyFaces Tomcat configuration help page lists it. They conflict with what's shipped with Tomcat. Good luck.On 5/11/06, Garg,

myfaces and Geronimo

2006-03-22 Thread Ken McArthur
I just noticed that Geronimo is not listed under working myFaces Servlet Containers. I've successfully run myFaces 1.1.1 using Goneronimo 1.0 Tomcat and Jetty distributions.

Re: javascript function getScrolling()

2006-03-07 Thread Ken McArthur
-paramparam-nameorg.apache.myfaces.AUTO_SCROLL/param-nameparam-valuefalse/param-value /context-param- Original Message - From: Ken McArthur [EMAIL PROTECTED]To: MyFaces Discussion users@myfaces.apache.orgSent: Tuesday, March 07, 2006 5:33 AM Subject: _javascript_ function getScrolling()Sometimes

javascript function getScrolling()

2006-03-06 Thread Ken McArthur
Sometimes I'm returning to the same jsp page after executing an action. Page is rebuilt fine but position in browser returns to where I was. Looks like culprit is _javascript_ function called getScrolling(). Anyone know how to suppress this _javascript_? I've put into my body tag but load now

utf-8 from resource bundle?

2006-01-04 Thread Ken McArthur
Hi, All my pages start with [EMAIL PROTECTED] pageEncoding=utf-8 contentType=text/html; charset=utf-8 % and have meta http-equiv=content-type content=text/html; charset=utf-8 in the html head tag. Output from all database derived unicode characters look fine. However, output from resource

Re: utf-8 from resource bundle?

2006-01-04 Thread Ken McArthur
any one may have. Thanks, Ken On 1/4/06, Ken McArthur [EMAIL PROTECTED] wrote: Hi, All my pages start with [EMAIL PROTECTED] pageEncoding=utf-8 contentType=text/html; charset=utf-8 % and have meta http-equiv=content-type content=text/html; charset=utf-8 in the html head tag. Output from all

Re: utf-8 from resource bundle?

2006-01-04 Thread Ken McArthur
Got it working. Thanks a ton. On 1/4/06, xzuma [EMAIL PROTECTED] wrote: ResourceBundles need to be converted by native2ascii before use. The ResourceBundle Editor plugin for Eclipse does this conversion automatically.On 1/4/06, Ken McArthur [EMAIL PROTECTED] wrote: Hi, All my pages start