Re: myfaces-tree2 component

2011-03-01 Thread Jakob Korherr
Hi Pritam, I had a similar problem in one of my projects and we solved it by making the tree AJAX aware - which means that we only loaded the first section of the tree with the site and then loaded other sections on demand if a user clicked the related +. However, if that is not possible for

RE: How to turn off the info for bean instance creations on System.out

2011-03-01 Thread AMIR-TAHMASSEB Marc Kamran
Just to confirm that a simple log4j.logger.org.apache.myfaces.config.annotation=WARN was enough to solve the problem :-) Thanks Marc -Original Message- From: AMIR-TAHMASSEB Marc Kamran Sent: 28 February 2011 17:38 To: 'MyFaces Discussion' Subject: RE: How to turn off the info for

RE: Tomahawk components' javascript are undefined

2011-03-01 Thread AMIR-TAHMASSEB Marc Kamran
Dear Richard and Omid, Finaly the only (an easiest) solution I found to my problem, was : NOT using those tomahawk component. I replaced them by some jquery component and it works well now. Thanks for your help Marc -Original Message- From: Richard Yee [mailto:richard.k@gmail.com]

Re: myfaces-tree2 component

2011-03-01 Thread Michael Heinen
Hi Pritam, I migrated a few weeks ago to the richfaces tree which has ajax support on board. Maybe it's an alternative for you. Regards, Michael Am 01.03.2011 09:20, schrieb Jakob Korherr: Hi Pritam, I had a similar problem in one of my projects and we solved it by making the tree AJAX

Re: myfaces-test site

2011-03-01 Thread Kito Mann
Hello Leonardo, Thanks -- a download page will certainly helped. I mentioned myfaces-test in my new JSF and Java EE Newscast ( http://blogs.jsfcentral.com/roller/editorsdesk/entry/episode_01_feb_20111), so hopefully more people will notice this project. We use it on one project. Question: does

Re: myfaces-test site

2011-03-01 Thread Leonardo Uribe
Hi Kito Question: does it parse faces-config.xml for managed beans yet? Not yet. I haven't investigated too much about it, but it is possible to do it, moving some myfaces core code into myfaces test. regards, Leonardo

[ANNOUNCE] MyFaces Core v1.2.10 Release

2011-03-01 Thread Leonardo Uribe
The Apache MyFaces team is pleased to announce the release of MyFaces Core 1.2.10. MyFaces Core is a JavaServer(tm) Faces 1.2 implementation as specified by JSR-252. MyFaces Core has passed Sun's JSR-252 TCK and is 100% compliant with the JSR-252 specification. MyFaces Core 1.2.10 is

Using statusIndicator

2011-03-01 Thread Håkon Sagehaug
Hi all, I've just stared using Trinidad and myFaces, and had a question. I'm implementing a login in page for uses, and wanted to use the statusIndicator, to give back messages for the user like 1. Got user information 2. Loading datasets 3. Logged in And tried to have a tr:outputText within

Re: Using statusIndicator

2011-03-01 Thread Scott O'Bryan
I see no reason why this wouldn't work.. What specifically is failing for you and perhaps a code snipi might help me visualize your issue. On Mar 1, 2011, at 3:04 PM, Håkon Sagehaug hakon.sageh...@uni.no wrote: Hi all, I've just stared using Trinidad and myFaces, and had a question. I'm

Re: myfaces-test site

2011-03-01 Thread Kito Mann
On Tue, Mar 1, 2011 at 3:24 PM, Leonardo Uribe lu4...@gmail.com wrote: Hi Kito Question: does it parse faces-config.xml for managed beans yet? Not yet. I haven't investigated too much about it, but it is possible to do it, moving some myfaces core code into myfaces test. That's probably

Re: Tomahawk components' javascript are undefined

2011-03-01 Thread Richard Yee
Did you ever change the way you implemented your filter? I am pretty sure it is incorrect. Richard Sent from my iPhone On Mar 1, 2011, at 4:35 AM, AMIR-TAHMASSEB Marc Kamran marc.amir-tahmas...@ombudsman.europa.eu wrote: Dear Richard and Omid, Finaly the only (an easiest) solution I

Re: Tomahawk components' javascript are undefined

2011-03-01 Thread Leonardo Uribe
Hi If you receive those errors, it is probably your filter blocks tomahawk one, so the resource requested is not served. In normal conditions the components should work, inclusive if that so, probably other libraries using similar hacks will fail too. regards, Leonardo 2011/3/1 Richard Yee

Re: myfaces-tree2 component

2011-03-01 Thread Leonardo Uribe
Hi Use t:tree2 using client side mode obviously will cause the problem you mentioned, even if the generated html code is optimized in size. The alternative is use server side mode or other tree implementation that uses ajax techniques to load and show data. Right now I haven't tested if t:tree2

Re: Using statusIndicator

2011-03-01 Thread Håkon Sagehaug
Hi Thanks for the reply, here is my xhtml, with a simple login form tr:document title=Login Demo tr:statusIndicator f:facet name=busy tr:outputText value=#{helloWorldBacking.pollText} / /f:facet /tr:statusIndicator tr:form