Re: [[Trinidad] tr:selectManyShuttle

2007-09-11 Thread Matthias Wessendorf
see TRINIDAD-627 On 9/11/07, Martin Marinschek [EMAIL PROTECTED] wrote: But Reza - please file an issue, the exception shouldn't be an NPE - it should clearly indicate that the form is missing. regards, Martin On 9/11/07, Adam Winer [EMAIL PROTECTED] wrote: selectManyShuttle needs to

Re: [Trinidad] tr:selectManyShuttle

2007-09-11 Thread Matthias Wessendorf
Looks like you're on Facelets. No f:view needed tr:document tr:form ... /tr:form /tr:document -Matthias On 9/11/07, Adam Winer [EMAIL PROTECTED] wrote: Do you see any Javascript errors? (Also, you generally want a tr:document around the form, inside of the f:view). -- Adam On

Re: Any thoughts on splitting the mailing lists?

2007-09-11 Thread Matthias Wessendorf
-1 I think that will split the community, and that's not what we want. -M On 9/10/07, Andrew Robinson [EMAIL PROTECTED] wrote: Have there been any thoughts to split up the mailing lists per-project? Something like: [EMAIL PROTECTED] [EMAIL PROTECTED] [EMAIL PROTECTED] [EMAIL PROTECTED]

Re: Any thoughts on splitting the mailing lists?

2007-09-11 Thread Cagatay Civici
-1 as well Cagatay On 9/11/07, Matthias Wessendorf [EMAIL PROTECTED] wrote: -1 I think that will split the community, and that's not what we want. -M On 9/10/07, Andrew Robinson [EMAIL PROTECTED] wrote: Have there been any thoughts to split up the mailing lists per-project? Something

Re: [tobago] facelets tc:sheet seems to put java.util.Set into its var attribute

2007-09-11 Thread Zied Hamdi
Hi, Sorry I was absent for a moment, today I'm back at work. So the problem is that tc:sheet doesn't support java.util.Set collections. Why don't you just throw an IllegalArgumentException rather than passing the Set to the page scope under the varibale specified in *var *? This is very

Re: Orchestra dependent on MyFaces 1.1.6-SNAPSHOT?

2007-09-11 Thread Matthias Wessendorf
I don't think so. Just a standard error, that all trunk projects rely on the latest greatest (trunk) version of myfaces. See tomahawk (or it least was the case). Should be 1.1.5, that makes it also easier to release Orchestra. -M On 9/10/07, William H. Mitchell [EMAIL PROTECTED] wrote: I note

Re: Orchestra dependent on MyFaces 1.1.6-SNAPSHOT?

2007-09-11 Thread Mario Ivankovits
Hi! I don't think so. Just a standard error, that all trunk projects rely on the latest greatest (trunk) version of myfaces. See tomahawk (or it least was the case). Should be 1.1.5, that makes it also easier to release Orchestra. Yes, it would be necessary to downgrade to 1.1.5 for the

Re: Orchestra dependent on MyFaces 1.1.6-SNAPSHOT?

2007-09-11 Thread Mario Ivankovits
Ok, so I've seen we already moved on to myfaces 1.2.0 - so no SNAPSHOT here. The examples still run on 1.1.5 to ensure backward compatibility. Ciao, Mario

Re: Mixing trinidad with tomahwak - t:columns

2007-09-11 Thread Martin Hinterndorfer
Thank you very much. This might help a lot. One question remains: how do you resolve the actual value, which should be displayed? In the code-snipped you provided it works with cx:getValue(row, index) Is this a special tag-library I can use too? 2007/9/10, Renzo Tomaselli [EMAIL PROTECTED]:

Re: Mixing trinidad with tomahwak - t:columns

2007-09-11 Thread Renzo Tomaselli
Martin, this is just an EL function. This approach is a nested two-loop schema: for each row for each column in current row fetch value (row, column) in my taglib.xml the retrieving function is declared as: function function-namegetValueAt/function-name

RE: selectBooleanCheckbox changes to Readonly Mode on Binding

2007-09-11 Thread sandeep gururaj
Try out boolean instead of Boolean! This works for me. ~Sandeep -Original Message- From: Bandaru [mailto:[EMAIL PROTECTED] Sent: Tuesday, September 11, 2007 11:18 AM To: users@myfaces.apache.org Subject: Re: selectBooleanCheckbox changes to Readonly Mode on Binding Hi,

Re: [tobago] facelets tc:sheet seems to put java.util.Set into its var attribute

2007-09-11 Thread Volker Weber
Hi Zied, tc:sheet is a extension of h:datatable and supports the same values. AFAIK Set is not supported as Collection because there is no defined order to work on. But Set is supported as Object: http://java.sun.com/javaee/javaserverfaces/1.2_MR1/docs/api/javax/faces/model/ScalarDataModel.html

Fwd: How to work with JSF components and HTML Web Prototype Designer? Only for Seam, Tomahawk and Facelets?

2007-09-11 Thread distillingweb
Kito and all, We are considering to buy Dreamweaver mainly because of the possibility to use JSFToolBox with it. Since we are also thinking to use Trinidad, I would like to know JSFToolBox's support for MyFaces libraries. I didn't find so much information about its integration, only with Seam,

Re: Cross-browser problem with h:commandLink and f:param [core]

2007-09-11 Thread Ognjen Blagojevic
Any thoughts on this one? Is the way I'm using f:param wrong? Regards, Ognjen Ognjen Blagojevic wrote: Hi all, I have a problem using h:commandLink and f:param that is specific to Internet Explorer. In JSF I have: h:dataTable value=#{myBean1.findAll} var=row ... h:commandLink

Re: [tobago] facelets tc:sheet seems to put java.util.Set into its var attribute

2007-09-11 Thread Zied Hamdi
Thanks Volker, Do you think that my solution: adapting the Set to a List in the backing bean by simply doing: *public* ListPhoneNumber getPhones() { *return* *new* ArrayListPhoneNumber( getEditingPerson().getPhones() ); } will have side effects when deleting a row or

Trinidad jar - too many open files Exception

2007-09-11 Thread Steve
I've been getting the following exception: java.net.SocketException: Too many open files on a Tomcat server running on Linux. I ran lsof - p tomcat_pid to see what was going on and it seems that the trinidad jar file is being opened far too many times: . java3693 tomcat 1004r REG

Re: Trinidad jar - too many open files Exception

2007-09-11 Thread Matthias Wessendorf
Hi, we had something, mentioned with a SNAPSHOT of 1.0.2. Adam fixed something related to this. My guess is, you are using the release, isn't it ? Peter, is this still an issue for you guys ? Thanks! Matthias On 9/11/07, Steve [EMAIL PROTECTED] wrote: I've been getting the following

[Trinidad] inputDate issues.

2007-09-11 Thread Darren McEntee
Hi folks, I have the following tr:inputDate component tr:inputDate value=#{extranetUnreg.startDate} label=#{bundle.DateFrom} partialTriggers=PublishedSince tr:convertDateTime pattern=dd/MM/ secondaryPattern=dd/MM// tr:validateDateTimeRange maximum=#{DateBean.maxDate}/

Re: [Trinidad] inputDate issues.

2007-09-11 Thread Matthias Wessendorf
Hi, I have two questions: -is the selectOneRadio populating the inputDate w/ java.util.date object ? -is the maxDate a date ? Are you able to submit a simple test case ? On 9/11/07, Darren McEntee [EMAIL PROTECTED] wrote: Hi folks, I have the following tr:inputDate component

Re: [Trinidad] inputDate issues.

2007-09-11 Thread Matthias Wessendorf
I think the selectOneRadio is causing it. it's select Items are strings, but the value is date, right ? -Matthias On 9/11/07, Matthias Wessendorf [EMAIL PROTECTED] wrote: Hi, I have two questions: -is the selectOneRadio populating the inputDate w/ java.util.date object ? -is the maxDate a

Re: Trinidad jar - too many open files Exception

2007-09-11 Thread Steve
Hi, Yes I'm using the 1.0.2 release. I've just had a look at the thread you mentioned: http://www.mail-archive.com/users@myfaces.apache.org/msg39055.html So is this fixed in the latest SNAPSHOT? Cheers, Steve Matthias Wessendorf wrote: Hi, we had something, mentioned with a SNAPSHOT of

Re: Trinidad jar - too many open files Exception

2007-09-11 Thread Matthias Wessendorf
the commit by Adam, was before we released 1.0.2, as far as I know. Greetings, Matthias On 9/11/07, Steve [EMAIL PROTECTED] wrote: Hi, Yes I'm using the 1.0.2 release. I've just had a look at the thread you mentioned: http://www.mail-archive.com/users@myfaces.apache.org/msg39055.html So

number conversion and null values

2007-09-11 Thread Michael Heinen
I have a conversion problem with doubles and null values. JSP snippet: h:inputText value=#{!empty MyController.category MyController.category.treshold=0? MyController.category.treshold:''} f:convertNumber pattern=##0.##/ /h:inputText Class Category public double getTreshold()

Re: Trinidad jar - too many open files Exception

2007-09-11 Thread Steve
Thanks Matthias. I'll take a look. Any idea of stability problems with the snapshot? When is the next release planned? Steve Matthias Wessendorf wrote: the commit by Adam, was before we released 1.0.2, as far as I know. Greetings, Matthias On 9/11/07, Steve [EMAIL PROTECTED] wrote:

Re: Trinidad jar - too many open files Exception

2007-09-11 Thread Matthias Wessendorf
@stability issues: not that I know. @release: usually every one/two month, we release something. On 9/11/07, Steve [EMAIL PROTECTED] wrote: Thanks Matthias. I'll take a look. Any idea of stability problems with the snapshot? When is the next release planned? Steve Matthias Wessendorf

RE: [Trinidad] inputDate issues.

2007-09-11 Thread Darren McEntee
Hi Matthias, Thanks for the email. Yeah selectOneRadio populates the inputDate with a date object. MaxDate is java.util.date. Thanks, Darren. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Matthias Wessendorf Sent: 11 September 2007 13:11

[Trinidad] IE rendering issues.

2007-09-11 Thread Darren McEntee
Hi, I have some issues with rendering input fields in IE when they have validators or required attribute is set. The page contains several fields and partial page rendered is used. On a redisplay of the page, with drop downs etc. correctly updated, there is a 'padded' space under the

[Trinidad] tr:navigationTree not accepting a MenuModel anymore

2007-09-11 Thread Renzo Tomaselli
Hi, just upgraded from 1.01 to 1.02 since I would need tr:panelPopup. Component tr:navigationTree does not accept a MenuModel anymore, while calling the binding method: private CoreNavigationTree component; private MenuModel menuModel; public void setComponent(CoreNavigationTree c) {

[Trinidad] Trapping File Upload Exception

2007-09-11 Thread DLC
Hi all, Part of my web application includes the ability to upload files using the tr:inputFile tag. So far, I can get files uploaded and captured correctly. However, I'm not sure how to trap the EOFException that is thrown when a file above the upload limit (where file size

Re: Cross-browser problem with h:commandLink and f:param [core]

2007-09-11 Thread Andrew Robinson
That is definitely odd. Can you check to see what parameters are in the request parameters? Also, you may want to debug into the form submittal using a Microsoft script debugger. On 9/11/07, Ognjen Blagojevic [EMAIL PROTECTED] wrote: Any thoughts on this one? Is the way I'm using f:param

Re: [Trinidad] IE rendering issues.

2007-09-11 Thread Danny Robinson
Darren That's a known reported (sorry I don't have the issue number to hand) issue that we hope to fix very soon. Check the archives for possible workarounds. Danny On 9/11/07, Darren McEntee [EMAIL PROTECTED] wrote: Hi, I have some issues with rendering input fields in IE when they have

Re: [Trinidad] Trapping File Upload Exception

2007-09-11 Thread Matthias Wessendorf
Hi, there is already an issue on this (see [1]). Perhaps an web.xml entry like: web-app ... error-page exception-typejava.io.EOFException/exception-type location/SizeError.jsp/location /error-page helps ? See [2] -M [1]

Re: ajax and mod_compress

2007-09-11 Thread Volker Weber
Hi, anyone who used successfully mod_deflate on ajax requests? Regards, Volker 2007/9/6, Volker Weber [EMAIL PROTECTED]: Hi all, we having problems with ajax requests when mod_compress is enabeld in the apache. Looks like XMLHttpRequest sends Accept-Encoding: gzip,compress but did

Re: Trinidad jar - too many open files Exception

2007-09-11 Thread Adam Winer
Yeah, it was before 1.0.2. The big problem was calls to java.net.URLConnection.lastModified() that didn't close the input stream. (Bizarrely, an input stream gets opened on the File just to retrieve lastModified when you go through java.net.URL, at least for a typical JAR URLConnection

t:tree and different objects at different levels

2007-09-11 Thread Sushma Sharma
Hi, I have a requirement where I need to display a tree structure, but the tree items at different levels are different objects. e.g. first level is a workflow object, the tree items on the second level are approvers and so on... I checked t:tree, but looks like it takes only one type of

Dialog issue during ADF-Trinidad migration

2007-09-11 Thread Bertrand, Shawn R
(Trinidad 1.0.2 - build from July - the current one). I've migrated our application to use Trinidad, and see some PPR issues that are likely ours, but for the most part everything is working as expected. Except We use the dialog framework extensively, and every time we attempt to

Facelets, disable entities usage for non-english languages

2007-09-11 Thread David Delbecq
Hello, we are facing some embarrassing requirement here. We must provide an xml file to another service. We developped the database extraction using a simple Facelets template.You just had to dowload the page, it's already in xml with correct tag. Inside xml element are the value. Like

Re: t:tree and different objects at different levels

2007-09-11 Thread Julio Musin
Hi.. In these case you can use the Tree2 component de tomahawk.. you can see http://www.irian.at/myfaces/home.jsf for more details.. Regards.. Julio 2007/9/11, Sushma Sharma [EMAIL PROTECTED]: Hi, I have a requirement where I need to display a tree structure, but the tree items at

[Trinidad] panelPopup in 1.0.3 SNAPSHOT

2007-09-11 Thread Andrew Robinson
Before filing a bug, I was wondering what the intended result of this was: tr:panelPopup text=test styleClass=testclass test /tr:panelPopup from what I can see of 1.0.3-SNAPSHOT the testclass style class is ignored. Is it supposed to render on the trigger, the popup content, the popup outer

Re: Dialog issue during ADF-Trinidad migration

2007-09-11 Thread Adam Winer
There's two separate flags here: - useWindow - usePopup If useWindow is false, that means we navigate the whole page to the dialog. Simple enough. If useWindow is true, then we look at usePopup: if it's false, we want to show the dialog in a new browser window. We use FredJSP so that we have

Re: number conversion and null values

2007-09-11 Thread Mike Kienenberger
Maybe f:convertNumber pattern=###.##/ instead? I'm not an expert on format patterns, but doesn't 0 mean at least one digit? On 9/11/07, Michael Heinen [EMAIL PROTECTED] wrote: I have a conversion problem with doubles and null values. JSP snippet: h:inputText value=#{!empty

SRR

2007-09-11 Thread Perkins, Nate-P63196
Hey Rick, Can you give more information about how you ran the scripts concatenated? Can you supply a print out as well. Nate Perkins 480-441-3667 [EMAIL PROTECTED] This email message is for the sole use of the intended recipient(s) and may contain GDC4S confidential or privileged

RE: SRR

2007-09-11 Thread Perkins, Nate-P63196
Please disregard the below, Outlook really wanted to send it to you guys i guess! : ) Nate Perkins 480-441-3667 [EMAIL PROTECTED] This email message is for the sole use of the intended recipient(s) and may contain GDC4S confidential or privileged information. Any unauthorized review, use,

Re: [Trinidad] panelPopup in 1.0.3 SNAPSHOT

2007-09-11 Thread Adam Winer
Good question In general, they go on the root element. In this case, that's the span. However, the primary purpose of this component is definitely the popup itself, , so you could very reasonably argue that it ought to go there. Looking at the content, I have more questions: - Why do we

Re: [Trinidad] panelPopup in 1.0.3 SNAPSHOT

2007-09-11 Thread Adam Winer
Good question In general, they go on the root element. In this case, that's the span. However, the primary purpose of this component is definitely the popup itself, , so you could very reasonably argue that it ought to go there. Looking at the content, I have more questions: - Why do we