[Trinidad] Using dynamic pattern in f:convertDateTime

2008-04-13 Thread Paul van Rossem
If I use a dynamic date pattern in a f:convertDateTime, the pattern seems to be read only once at first page rendering, and never again, not even if its input component is rendered again (using PPR), for instance: tr:inputText label=myLabel value=#{bean.myDate} partialTriggers=saveBtn

Re: character encoding

2008-03-07 Thread Paul van Rossem
Use h:outputText value=#{UserNumberBean.modalita} escape=false/ Paul. Luca Stancapiano wrote: hi I've seen that myfaces executes a strange encoding for characters. If I have something similar: h:form h:commandLink action=#{UserNumberBean.log}

tr:selectOneListbox throws on empty map

2008-03-04 Thread Paul van Rossem
If the last item in a selectOneListbox is removed the renderer throws. But an empty list should be allowed. Also the exception message makes no sense (submittedValue's index 0 should be between 0 and -1). The same holds for selectOneChoice. Example jsf file: ?xml version=1.0 encoding=UTF-8 ?

Re: [trinidad] Clicking tr:inputDate icon gives Page not found

2008-02-28 Thread Paul van Rossem
. Matthias Wessendorf wrote: Hi, On Thu, Feb 28, 2008 at 8:07 AM, Paul van Rossem [EMAIL PROTECTED] wrote: Hi, If I use the tr:inputDate tag, clicking the calendar icon yields a Page not found, page /__ADFv__.jsf. Both in FF and IE. I'm using Trinidad 1.2.6. Do I need to include

Re: [trinidad] Clicking tr:inputDate icon gives Page not found

2008-02-28 Thread Paul van Rossem
. Matthias Wessendorf wrote: Hi, On Thu, Feb 28, 2008 at 11:09 AM, Paul van Rossem [EMAIL PROTECTED] wrote: Hi Matthias, Thanks a lot for your reply. It solved my problem. Indeed, if I use the /faces/* mapping instead *.jsf, it loads the correct page. Shouldn't it be independent

Re: Trinidad configuration

2008-02-28 Thread Paul van Rossem
Hi Jeremy, Did you tell JSF to use the Apache Trinidad RenderKit? see http://myfaces.apache.org/trinidad/installation.html. Success, Paul. Jeremy Girard wrote: Hi all, I run on jboss 4.2.2 with seam 2.0 I put the two jar trinidad-impl-1.2.6.jar and trinidad-api-1.2.6.jar in my webapp

[trinidad]: Any chance for a real tabpane component?

2008-02-26 Thread Paul van Rossem
I very much like the clean approach of the tr:panelTabbed tr:showDetailItem combination, but miss the hint=tabs attribute there, as present in the tr:navigationPane. I personally find the current panelTabbed layout not looking very nice... Regards, Paul.

Re: tr:table with CollectionModel

2008-02-23 Thread Paul van Rossem
OK, I found the bug, BlockRow should be public, not private. Still curious why so many setRowIndex / setRowKey calls? Paul. Paul van Rossem wrote: I have some questions about a tr:table with an org.apache.myfaces.trinidad.model.CollectionModel. .

tr:table with CollectionModel

2008-02-22 Thread Paul van Rossem
I have some questions about a tr:table with an org.apache.myfaces.trinidad.model.CollectionModel. If I attach a CollectionModel to a tr:table as defined in the tag specification, I see some things happening that I don't understand. Could anybody help me out? I use the following simple JSP

Re: anyone used t:inputFileUpload with s:modalDialog?

2008-02-09 Thread Paul van Rossem
Hi Adam, Got that too, drived me nuts. Still don't know exactly what was going on, but one of the things I did was deleting the Tomcat Work directory, I 'think' that was when it went OK again.(I'm referring to the h:commandLink problem only) Paul. Adam Jenkins wrote: hmmm, it's not just file

Re: [Trinidad] commandButton action method not called

2008-02-07 Thread Paul van Rossem
if it will fix it, but worth trying. On Feb 6, 2008 1:08 AM, Paul van Rossem [EMAIL PROTECTED] wrote: I tried the following simple jsf: ?xml version=1.0 encoding=UTF-8 ? jsp:root version=2.0 xmlns:jsp=http://java.sun.com/JSP/Page; xmlns:c=http://java.sun.com/jsp/jstl/core; xmlns:f=http

[Trinidad] commandButton action method not called

2008-02-06 Thread Paul van Rossem
I tried the following simple jsf: ?xml version=1.0 encoding=UTF-8 ? jsp:root version=2.0 xmlns:jsp=http://java.sun.com/JSP/Page; xmlns:c=http://java.sun.com/jsp/jstl/core; xmlns:f=http://java.sun.com/jsf/core; xmlns:h=http://java.sun.com/jsf/html;

[Trinidad] Confusing DOCTYPE

2008-02-03 Thread Paul van Rossem
I'am rather confused by the DOCTYPE generation of Trinidad's tr:document tag. It generates a HTML DOCTYPE, not XHTML. !DOCTYPE HTML PUBLIC -//W3C//DTD HTML 4.01 Transitional//EN http://www.w3.org/TR/html4/loose.dtd; which doesn't allow selfclosing meta and link tags (being XHTML syntax).