Re: Using statusIndicator

2011-03-04 Thread Håkon Sagehaug
Hi I put the form in various places, but I could not get the wanted effect. Just curious, since this is an update of a value on the server side. The clients somehow needs to know if the value have changed or not. I guess this is somewhere referred to as server push. My impression of the

[Trinidad] Concerns about the future of Trinidad

2011-03-04 Thread Walter Mourão
Hi folks, I'm a happy Trinidad user, so far, but I'm a bit worried about its future. I'm seeing the evolution of Icefaces, Richfaces and (mainly) Primefaces and I feel like Trinidad isn't going with the same pace. Am I right ? What do you think ? Thanks, Walter Mourão http://waltermourao.com.br

Re: [Trinidad] Concerns about the future of Trinidad

2011-03-04 Thread ascannon01
I've had similar concerns. until recently there hadn't been any apparent movement in Trinidad development. Is this because of the commercial backing of the other two? On Mar 4, 2011 5:53am, Walter Mourão walter.mou...@gmail.com wrote: Hi folks, I'ma happy Trinidad user, so far, but I'ma

Re: Using statusIndicator

2011-03-04 Thread Richard Yee
Hakon, See my email from yesterday. That is why I suggested using the tr:poll component. How many different status messages will you have? What period of time will the messages be changing? Depending on these answers, the tr:poll component or the statusIndicator will work. Can you list the

Re: Using statusIndicator

2011-03-04 Thread Scott O'Bryan
Hakon, Maybe your usecase wasn't clear to me. You expect to change the button in response to a button click right? Or are you truly looking to update the value at an arbitrary time when the bean changes. If the latter, your talking a much more complex system. You need, essentially, some sort

Re: Using statusIndicator

2011-03-04 Thread Scott O'Bryan
Yeah, I agree with Richard now that I know your trying to dynamically update it. The poll components will kick off the AJAX request and your partialTrigger (set to the poll component) will allow the text to change. I would also suggest disabling the poll component when you don't expect any

Re: [Trinidad] Concerns about the future of Trinidad

2011-03-04 Thread Dominik Dorn
It's maybe that people want fancy JQuery/Javascript components like those used everywhere else on the web and primefaces has those (its basically just a wrapper around em). 2011/3/4 Walter Mourão walter.mou...@gmail.com: Is this because of the commercial backing of the other two? I don't

Re: [Trinidad] Concerns about the future of Trinidad

2011-03-04 Thread Scott O'Bryan
I think Trinidad is going to continue to be a viable renderkit now and in the future personally but a large part of that depends on the community at large. I would love to see more participation in this area. Scott On Mar 4, 2011, at 5:50 AM, ascanno...@gmail.com ascanno...@gmail.com wrote:

Re: [Trinidad] Concerns about the future of Trinidad

2011-03-04 Thread Scott O'Bryan
Maybe. I mean as far as Rich Renderkits go, Trinidad was one of the earliest. Many other renderkits got to take advantage of newer technologies. When I first started with Trinidad, before the thing moved over to Apache, the AJAX was still using iframes instead of HttpServletRequest. :) On Mar

Re: Using statusIndicator

2011-03-04 Thread Håkon Sagehaug
Hi Thanks for the tips and holding out this thread. To kick of the poll do I use rendered=true/false, it should have had a enable/disable. Or can I set the interval to 0 or -1. Cheers, Håkon On 4 March 2011 14:18, Scott O'Bryan darkar...@gmail.com wrote: Yeah, I agree with Richard now that I

Re: Using statusIndicator

2011-03-04 Thread Richard Yee
enable it on the server as a result of pressing the commandButton. can you answer some of the questions I posed earlier? If we see the whole picture, then perhaps we can come up with a complete solution. -Richard 2011/3/4 Håkon Sagehaug hakon.sageh...@uni.no Hi Thanks for the tips and

Re: Using statusIndicator

2011-03-04 Thread Håkon Sagehaug
Hi, So we're trying to implement part of a system, already implemented with icefaces using myfaces and Trinidad. We decided to compare alittle. Icefaces have Ajax Push, so it makes it easy to update clients whenever there are things to update. SO when a user logs in, we're calling tree different

Turn down logging in 2.0.4?

2011-03-04 Thread mraible
What's the best way to turn down logging in MyFaces 2.0.4. There's a lot of warning messages that don't seem relevant. Thanks, Matt -- View this message in context: http://old.nabble.com/Turn-down-logging-in-2.0.4--tp31068698p31068698.html Sent from the MyFaces - Users mailing list archive at

RE: JSF2 and content from the classpath?

2011-03-04 Thread Stephen Connolly
Hi, Just a quick question as I am doing some research. I cannot remember (and my google searches are just turning up far far too much noize) whether it is possible to server content directly from jars on the classpath rather than only from the wars. I'm thinking of a case where you might have a

Re: JSF2 and content from the classpath?

2011-03-04 Thread Kito Mann
Hello Stephen, With JSF 2, you can use the resource handling mechanism to load resources from META-INF/resources -- this works for composite components, images, etc. If you want to serve .xhtml files from a JAR, you need to write a custom ResourceResolver, which is a trivial exercise. See:

Re: JSF2 and content from the classpath?

2011-03-04 Thread Stephen Connolly
and if this/these .xhtml file(s) are actually facelets pages... will that work? On 4 March 2011 16:54, Kito Mann kito.m...@virtua.com wrote: Hello Stephen, With JSF 2, you can use the resource handling mechanism to load resources from META-INF/resources -- this works for composite

Re: JSF2 and content from the classpath?

2011-03-04 Thread Kito Mann
On Fri, Mar 4, 2011 at 11:55 AM, Stephen Connolly stephen.alan.conno...@gmail.com wrote: and if this/these .xhtml file(s) are actually facelets pages... will that work? Yep. On 4 March 2011 16:54, Kito Mann kito.m...@virtua.com wrote: Hello Stephen, With JSF 2, you can use the

Re: JSF2 and content from the classpath?

2011-03-04 Thread Stephen Connolly
is there any example code you know of that you could share? And can I have a pony? ;-) On 4 March 2011 16:56, Kito Mann kito.m...@virtua.com wrote: On Fri, Mar 4, 2011 at 11:55 AM, Stephen Connolly stephen.alan.conno...@gmail.com wrote: and if this/these .xhtml file(s) are actually

Re: JSF2 and content from the classpath?

2011-03-04 Thread Kito Mann
On Fri, Mar 4, 2011 at 11:59 AM, Stephen Connolly stephen.alan.conno...@gmail.com wrote: is there any example code you know of that you could share? Just copy the CustomResourceResolver and web.xml section from http://ocpsoft.com/opensource/create-common-facelets-jar/. And can I have a

Re: [Trinidad] Concerns about the future of Trinidad

2011-03-04 Thread Walter Mourão
Hi Scott When I first started with Trinidad, before the thing moved over to Apache, the AJAX was still using iframes instead of HttpServletRequest. :) me too! I mean as far as Rich Renderkits go, Trinidad was one of the earliest. Many other renderkits got to take advantage of newer

Re: Using statusIndicator

2011-03-04 Thread Richard Yee
Hakon, According to the docs, if you don't put an interval, it will default to 5000 (5 secs). I would expext setting it to 0 would disable it. You could have your outputText use a partialTrigger on the poll component and have it update whenever the poll gets fired. How long does this whole

jsf and bv 1.1

2011-03-04 Thread Gerhard
hi @ all, [1] might be interesting for you. regards, gerhard [1] http://mail-archives.apache.org/mod_mbox/incubator-bval-dev/201103.mbox/%3CAANLkTimufZBOXn4P-mJuGg=9q=skj1kaw29r5u-t4...@mail.gmail.com%3E http://www.irian.at Your JSF powerhouse - JSF Consulting, Development and Courses in

Re: [Trinidad] Concerns about the future of Trinidad

2011-03-04 Thread Scott O'Bryan
Yeah, makes total sense. I mean heck, Trinidad's extendability and plugability are second to none in that regard. I know I, for one, would lobe to see an new/enhanced renderkit to beef up the Trinidad system and it's been talked about several times about having a series off Additional renderkits