RE: Can tomahawk be used without myfaces

2008-11-24 Thread Pawel . Czerwinski
I was a little fast, when I was sending you my response. After I had sent it I've noticed that you are using 1.1 version of JSF RI and that due to java 1.4 you cannot switch to newer implementation, which in fact we are using. Currently we use JSF RI 1.2_09 and Tomahawk 1.1.7 - 1.1.8.

[Tomahawk] What happened to tomahawk-1.1.7-SNAPSHOT ?

2008-06-11 Thread Pawel . Czerwinski
Hi, I would like to ask Tomahawk's developers about your last activity. I've noticed that something happend to 1.1.7-SNAPSHOT very recently, maybe even today, because yesterday everything was running fine. I mean - now, when I create a project by using maven archetype: mvn archetype:generate

[Orchestra] conversationContext parameter sent in POST, not GET - possible?

2008-02-14 Thread Pawel . Czerwinski
Hi, I was testing Orchestra project for a while and generally speaking I like it, but one thing bothers me. The conversationContext parameter is appended to a request address and I have like: http://localhost:8080/project/page.jsf?conversationContext=1 Is it possible to force passing this

Odp: Difference between 1.1.5 and 1.2 in validation errorMessages

2007-12-03 Thread Pawel . Czerwinski
Hi, As far as I know, the new JSF specification (since 1.2.0) tells that all inputs fields may have an additional parameter called label, that accepts both - static and el expressions. (i.e. h:inputText id=fieldName label=#{msg.fieldName} /) And due to this enhacement validation messages

Migration to myfaces 1.2.0

2007-11-28 Thread Pawel . Czerwinski
Hi, I have an application perfectly running on: - Tomcat 6.0.14, - Myfaces 1.1.5, - Tomahawk 1.1.6, - latest RichFaces. I would like to migrate to myfaces 1.2.0 , and I would like to know what steps should I follow to succeed. Of course I tried to simply replace the old myfaces library with

Re: Index in tomahawk dynamic datatable

2007-09-06 Thread Pawel . Czerwinski
Hi, I'm not sure if I get you right, but it seems to me you would like to achieve this: t:dataTable id=results border=1 value=#{proteins.list} var=line rowIndexVar=idx renderedIfEmpty=false

Re: Index in tomahawk dynamic datatable

2007-09-06 Thread Pawel . Czerwinski
The problem is the way you create your list, which is: public Proteins() { Dataset set = new Dataset(); set.setName(Dataset 1); set.setInput(This is Dataset 1); list.add(set); set.setName(Dataset 2); set.setInput(This is

Re: [JSF] Custom component - commandLink

2007-08-10 Thread Pawel . Czerwinski
Thanks for your help, everything works now! -- regards Paweł Czerwiński Andrew Robinson [EMAIL PROTECTED] wrote on 2007-08-09 17:04:25: You have a few problems with that code. 1) You should set the parent of the component, this causes issues with many components 2) You should mark the

[JSF] Custom component - commandLink

2007-08-09 Thread Pawel . Czerwinski
Hi, I'm developing some simple custom component, and I'm facing a problem I cannot resolve and understand, so I will really appreciate any help. I have this piece of code: public void encodeBegin(FacesContext c) throws IOException { HtmlCommandButton b = (HtmlCommandButton)

Re: Custom error handler and ajax requests (a4j)

2007-08-03 Thread Pawel . Czerwinski
Unfortunatelly, this is not it, I don't use Shale :( Thanks though. -- Regards Paweł Czerwiński [EMAIL PROTECTED] (Gary VanMatre) wrote on 2007-08-02 15:32:02: Are you using Shale ViewController [1]? If so, try the nightly. [1] https://issues.apache.org/struts/browse/SHALE-409

Re: Custom error handler and ajax requests (a4j)

2007-08-02 Thread Pawel . Czerwinski
Anybody? : -- Regards Paweł Czerwiński [EMAIL PROTECTED] wrote on 2007-07-31 14:38:59: Hi, I made my own error handler (works like the one described here: http://wiki.apache.org/myfaces/Handling_Server_Errors) . In the backing bean I use following lines to fetch the exception

Custom error handler and ajax requests (a4j)

2007-07-31 Thread Pawel . Czerwinski
Hi, I made my own error handler (works like the one described here: http://wiki.apache.org/myfaces/Handling_Server_Errors) . In the backing bean I use following lines to fetch the exception details FacesContext context = FacesContext.getCurrentInstance(); Map requestMap =

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

2007-07-27 Thread Pawel . Czerwinski
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 thehttp://people.apache.org/~werpu/myfaces12custom.zip package,