Re: Myfaces tomahawk extension problem with RichFaces fileUpload

2008-05-29 Thread Svilen Ivanov
suggestions ? RichFaces 3.2.0SR1 MyFaces 1.2.3 Tomahawk 1.1.6 -- Svilen Ivanov http://svilen-online.blogspot.com There is no dark side of the moon really. Matter of fact it's all dark.

Re: Is it possible to track the user's action?

2008-01-18 Thread Svilen Ivanov
, It works well, Thank you very much. Just the getAction() is a deprecated method. liu - Original Message - From: Svilen Ivanov [EMAIL PROTECTED] To: MyFaces Discussion users@myfaces.apache.org Sent: Wednesday, January 16, 2008 10:51 AM Subject: Re: Is it possible to track

Re: Is it possible to track the user's action?

2008-01-16 Thread Svilen Ivanov
and German Professional Support for Apache MyFaces -- Svilen Ivanov http://svilen-online.blogspot.com There is no dark side of the moon really. Matter of fact it's all dark.

Re: AW: Action Method not called using Myfaces 1.1.5

2007-12-04 Thread Svilen Ivanov
Do you have input fields marked as required or validators? Put a h:messages / to see if there is validation error. Regards, Svi Andreas Grund wrote: Hi Matthias, yes, it is the last element within a h:form-tag. Greetings, Andreas -Ursprüngliche Nachricht- Von: [EMAIL PROTECTED] im

Log each call to an JSF action method

2007-08-29 Thread Svilen Ivanov
For audit and debugging purposes I want to log the name of action method that is being called. Is it possible to hook somewhere in JSF lifecycle? Or should I use Aspect oriented approach? Any ideas are appreciated? -- Svilen Ivanov http://svilen-online.blogspot.com There is no dark side

Re: Log each call to an JSF action method

2007-08-29 Thread Svilen Ivanov
the action has been called, you can use the ActionListener of the JSF Application or the NavigationHandler as both have access to the action EL expression. BTW - the myfaces NavigationHandlerImpl already logs each call at debug level. -Andrew On 8/29/07, Svilen Ivanov [EMAIL PROTECTED] wrote

Re: Clustering MyFaces application with Tomcat

2007-08-28 Thread Svilen Ivanov
allow jsf to clear the tree after the request is processed). 2007/8/27, Svilen Ivanov [EMAIL PROTECTED]: I'm trying to cluster a certain MyFaces ( 1.1.5, tomahawk 1.1.6) application in Tomcat 5.5.20. The applications heavily relies on session beans which use ListDataModel

Clustering MyFaces application with Tomcat

2007-08-27 Thread Svilen Ivanov
share your experience with clustering MyFaces application as well or if you point me towards resources on the Internet that might help Regards, Svilen [1] http://www.mail-archive.com/users@myfaces.apache.org/msg38166.html [2] http://wiki.apache.org/myfaces/FAQ -- Svilen Ivanov http://svilen

Re: [Trinidad] button + hover

2007-08-02 Thread Svilen Ivanov
BTW, CSS pseudo-class :hover doesn't work in IE6 for all tags (it works just for A). Have you checked it Firefox? Firfox allows :hover on arbitrary tag. Regards, Svi Okan Çetin wrote: I tried many of posibilities ::hover, :hover, ::button-hover, ::icon-hover etc... On 02/08/07, Cristi Toth

Re: NoClassDefFoundError: freemarker/template/TemplateException (tomahawk-sandbox-1.1.7-Snapshot.jar)

2007-08-01 Thread Svilen Ivanov
. regards, Martin On 8/1/07, Svilen Ivanov [EMAIL PROTECTED] wrote: Martin, I just tried the nightly snapshot build (01-Aug-2007 05:04) and I noticed the following problems. 1. The java.lang.NoClassDefFoundError: freemarker/template/TemplateException error no longer

Re: NoClassDefFoundError: freemarker/template/TemplateException (tomahawk-sandbox-1.1.7-Snapshot.jar)

2007-07-31 Thread Svilen Ivanov
Sent from the MyFaces - Users mailing list archive at Nabble.com. -- Matthias Wessendorf further stuff: blog: http://matthiaswessendorf.wordpress.com/ mail: matzew-at-apache-dot-org -- Svilen Ivanov http://svilen-online.blogspot.com There is no dark side of the moon really. Matter

Re: NoClassDefFoundError: freemarker/template/TemplateException (tomahawk-sandbox-1.1.7-Snapshot.jar)

2007-07-31 Thread Svilen Ivanov
-Snapshot.jar%29-tf4191646.html#a11921012 Sent from the MyFaces - Users mailing list archive at Nabble.com. -- http://www.irian.at Your JSF powerhouse - JSF Consulting, Development and Courses in English and German Professional Support for Apache MyFaces -- Svilen Ivanov http://svilen

Re: Problem java.lang.NoClassDefFoundError: javax/el/ELResolver

2007-07-27 Thread Svilen Ivanov
You need tomcat 6.x. [EMAIL PROTECTED] wrote: Hi, I'm facing quite similar problems. For few days I'm trying to fire up my application using myfaces 1.2.0 and tomahawk 1.6 but I just cannot mange it. I had the same problem that you have, but I took the jar files from

Re: type problems with t:selectOneMenu / f:selectItem

2007-07-25 Thread Svilen Ivanov
Marcus Beyer wrote: [...] Please see the WIKI as it is documented there. Where? http://wiki.apache.org/myfaces/? I cannot find anything about it. Check this wiki page: http://wiki.apache.org/myfaces/Tomahawk_1%2e1%2e4_to_1%2e1%2e5 Regards -- Svilen Ivanov http://svilen

How to disable Freemarker from current Sandbox?

2007-07-25 Thread Svilen Ivanov
(StartupServletContextListener.java:68) at org.apache.myfaces.webapp.StartupServletContextListener.contextInitialized(StartupServletContextListener.java:51) at org.apache.catalina.core.StandardContext.listenerStart(StandardContext.java:3763) -- Svilen Ivanov http://svilen

Re: Any one using Selenium to test JSCook Menus?

2007-06-05 Thread Svilen Ivanov
Hi, I use selenium to test t:tree2. My problem was how to locate the [+] or [-] icon in front of specific node. I ended up writing my own locator (in selenium terms) that traverses the DOM near the node's text and finds image tags with specific URL (plus.png/minus.png). Locating the image makes

Re: selectItems and converter

2007-05-23 Thread Svilen Ivanov
Use the SelectItem constructor for label *and* value: SelectItem(java.lang.Object value, java.lang.String label) This way you can specify both value of the option tag and the label displayed to in the dropdown. 2007/5/23, Walter Oliver (BR/ICI3) [EMAIL PROTECTED]: Hi all, just a question

Nesting t:tree2; problem with binding

2007-01-29 Thread Svilen Ivanov
Hi, I need to create a tree which nodes contain another tree as well. Something like the following (simplified) JSF snippet. t:tree2 id=outerTree value=#{myBean.treeModel} binding=#{myBean.treeData} var=node f:facet name=team t:tree2 id=innerTree value=#{node.treeModel}

panelTabbedPane doesn't reset form's target

2006-12-04 Thread Svilen Ivanov
Hello, I'm using panelTabbedPane with server side tab switching on a page with commandLink that should open a new browser window (target=_blank). When user first clicks on the commandLink and then - on a panel tab, instead of reloading the current page with clicked tab displayed, the page is