[Trinidad] duplicated client ids when using Trinidad with facelets

2009-09-11 Thread Omar Elprince
I'm having an issues upgrading the current project I'm working on with facelets. The pages that use simple tags like panelbox and commandbutton is working fine. The pages with complex component tag like a tree or a paneltabbed is always complaining about duplicated client ids. I've been

Re: log4j and myfaces problem in websphere

2009-09-11 Thread Omar Elprince
Try adding commons discovery and upgrade common logging to 1.0.4. May be that will work for you. --Omar On Sep 11, 2009, at 7:20 AM, domincb domi...@gmail.com wrote: I tried to put the log4j library into an myfaces application in a Websphere application server (6.0 version). When I inserted

Re: AW: [Trinidad] How to use an iterator, selectOneChoice and partialTriggers?

2009-09-09 Thread Omar Elprince
Use immediate=true --Omar On Sep 9, 2009, at 8:24 AM, Roeder, Andreas andreas.roe...@firstdata.de wrote: Thanx a lot, that worked like a glue. Just one problem is left: all the selectOneChoice components are on required=true. How can I avoid the validation? I already tried to call at

Re: JSF scalability issues?

2009-09-06 Thread Omar Elprince
It would be useful for every one if you send the reference source of the article you are referring to in your email. On Sep 5, 2009, at 1:18 PM, measwel wrote: LS, I read recently, that JSF is not well suited for big projects, as it faces scalability issues when the number of concurrent

Re: JSF scalability issues?

2009-09-06 Thread Omar Elprince
Here is a good reference that would help in deciding if JSF is the right choice. JSF for nonbelievers http://www.jsfcentral.com/listings/A9190?link On Sep 6, 2009, at 8:07 AM, measwel wrote: Hereby the links:

Re: Java Heap Space

2009-06-18 Thread Omar Elprince
I think you should write from a buffer stream and not from a direct stream. --Omar On Jun 18, 2009, at 9:04 AM, Richard Yee richard.k@gmail.com wrote: Take a look at the HttpServletResponse.setBufferSize() and flushBuffer() methods. Perhaps you should call flushBuffer instead of

Re: Java Heap Space

2009-06-18 Thread Omar Elprince
I think you should write from the buffer stream and not from a direct stream. --Omar On Jun 18, 2009, at 9:04 AM, Richard Yee richard.k@gmail.com wrote: Take a look at the HttpServletResponse.setBufferSize() and flushBuffer() methods. Perhaps you should call flushBuffer instead of

Re: dynamically populating a drop-down selection list with values from a database

2009-04-28 Thread Omar Elprince
In order to populate a selectOneListBox or selectOneChoice from a database use: tr:selectOneListbox value=#{bean.aValue} required=yes f:selectItems value=#{myBacking.selectList} /tr:selectOneListbox selectList should be a collection of type SelectItem. then your backing bean selectList

Re: Trinidad 1.2 PPR completely broken due to serious core issue

2009-04-12 Thread Omar Elprince
Hi Nick, I have an issue with the auto generated ids which is basically prefixed with the String j_id_. here is the link to the jira opened. http://issues.apache.org/jira/browse/MYFACES-2175 please vote. On Apr 12, 2009, at 3:20 PM, Developer wrote: Hi all, Trinidad 1.2.11 is utterly

Trinidad 1.2.11, MyFaces 1.2.3 and Facelets 1.1.14

2009-03-31 Thread Omar Elprince
Hello, I'm having a problem using facelets. Loading a page initially is working fine, but if I reload the page either by clicking on a link on the page or returning back from another page, I got the following error: java.lang.IllegalStateException: Client-id : j_id45 is duplicated in the faces

Re: [Trinidad] Facelets forward

2009-03-27 Thread Omar Elprince
that's might be a good idea. to include the forward page. thanks. On Mar 26, 2009, at 10:52 AM, Zigc Junk wrote: Since you use facelets, can you do something like html jsfc=trh:html xmlns=http://www.w3.org/1999/xhtml; xmlns:ui=http://java.sun.com/jsf/facelets;

Re: Replacing font color with trinidad skinning?

2009-02-10 Thread Omar Elprince
of the tr:dataTable is still the default myfaces green. Any other solution? Thanks Felix From: Omar Elprince [mailto:general.equal@gmail.com] Sent: Tuesday, February 10, 2009 2:40 AM To: MyFaces Discussion Subject: Re: Replacing font color with trinidad skinning? try modifying those

Re: Replacing font color with trinidad skinning?

2009-02-09 Thread Omar Elprince
try modifying those selectors in you css. .AFRequiredIconStyle .AFRequiredIconStyle:alias On Feb 9, 2009, at 12:20 PM, felix.bec...@t-systems.com felix.bec...@t-systems.com wrote: Hi, Trinidad/myfaces is using a special green for required „*“ and for table headers. This green doesn’t

Re: [trinidad] PRR DIVs

2009-02-06 Thread Omar Elprince
You really should not use div. Also take a look at the output html. In your code I don't see the partialTriggers attribute. http://myfaces.apache.org/trinidad/devguide/ppr.html On Feb 6, 2009, at 11:58 AM, Kusch wrote: I am having some trouble with PPR relative to the use of DIVs and the

Re: [trinidad] PRR DIVs

2009-02-06 Thread Omar Elprince
bean that pre-folded the list into a 2-up structure (column1, column2) for use in a table, but this was pretty ugly. Is there another approach you can suggest? I did notice that my version of Trinidad is quite old - 1.2.5, so I will try to upgrade and see what happens. Omar Elprince-2 wrote

[Trinidad] tr:inputText styling

2009-02-05 Thread Omar Elprince
Hi, I'm having a problem in styling a disabled input field: tr:inputText value=#{myBacking.myValue} disabled=true /. when the inputText is disabled, I'm trying to change the text color to be black instead of gray. in my css i used af|inputText:disabled::content { color:black; }

Re: [Trinidad] tr:inputText styling

2009-02-05 Thread Omar Elprince
(in uncompressed mode) I believe. When you get confused, the best thing to do is turn off content compression and then use FireBug to look at the DOM to see the CSS classes that are added. -Andrew On Thu, Feb 5, 2009 at 8:26 AM, Omar Elprince general.equal@gmail.com wrote: Hi, I'm having a problem

Re: [TRINIDAD] How to display columns of checkboxes in tr:selectManyCheckbox ?

2009-02-02 Thread Omar Elprince
I am not sure if I understand what your question? Could you elaborate more? If the columns are in table. If would be help full if you post some code snippets of what you trying to do. On Feb 2, 2009, at 7:05 AM, Paul Spencer wrote: How can I display checkboxes in columns? As an

Re: [Trinidad] charset

2008-12-30 Thread Omar Elprince
Hi Desik, when i remove jsp:directive.page contentType=text/html;charset=utf-8 / I get. XML Parsing Error: mismatched tag. Expected: /link. Location: http://localhost:8080/artshop/faces/app/home.jspx Line Number 7, Column 527: I am using tomcat-6.0.18, myfaces 1.2.0, trinidad 1.2.10, firefox