Re: managed-beans, spring references, and serializable

2006-09-25 Thread Mario Ivankovits
Hi! > We are just shaking down some big improvements and bugfixes in the > Dialog stuff ... if you want to try it, grab the shale-dialog2 and > shale-dialog2-legacy modules from the "sandbox" directory under the > nightly builds. This will likely get pushed back into the main > codeline (replacing

Re: managed-beans, spring references, and serializable

2006-09-25 Thread Craig McClanahan
On 9/25/06, Ingo Düppe <[EMAIL PROTECTED]> wrote: Well I guess you are totally right. I have to rethink my design andmaybe I should take a deep look at shale. What is your opinion, is shaleproduction ready, cause I'm in a really tight time schedule. Does theDialog feature safe the state over severa

Publicity for MyFaces

2006-09-25 Thread Nicklas Karlsson
http://www.nuxeo.org/sections/about/java-switch/about-nuxeo5If the migration works well, that is :-)

Re: Tree2 and Ajax4JSF Integration for Ajax Lazy Loading

2006-09-25 Thread Roger Keays
Hey Bill, I havent look into DynaFaces because is still in its very early stage. If you found it works, that's good, you should post the solution with DynaFaces here so other users can use it.. I will definitely look into DynaFaces once it becomes more mature. Here's how it looks in dynafac

Re: Switching between RI and MyFaces

2006-09-25 Thread Jefferson Parke
Oh my goodness.  I spent the last week configuring, searching, posting, and reconfiguring until you wrote the words I'd never seen before: "TLD cache".  Deleting the tldCache.ser files under the work directory (eclipse\.metadata\.plugins\org.eclipse.wst.server.core\tmp0\work directory for those of

Re: Switching between RI and MyFaces

2006-09-25 Thread Dennis Byrne
No way dude :) The TLD has got to be in the classpath somewhere. Try cleaning out the tomcat work dir, or double check the web.xml . BTW, if anyone knows anything about the TLD cache mechanism in tomcat, please put it in this thread. Dennis Byrne >-Original Message- >From: Jeffer

Switching between RI and MyFaces

2006-09-25 Thread Jefferson Parke
I'm trying to find an easy way to switch back and forth between RI and MyFaces.  As I understand it, it can be as easy as replacing jsf-api.jar and jsf-impl.jar with myfaces-api.jar and myfaces-impl.jar and vice versa.  For me, when I try to switch from MyFaces back to RI (not for good mind you! :)

Re: How to get tomahawk wap project active?

2006-09-25 Thread Mike Kienenberger
You'd need to check out the code and take a look at it. I wouldn't think much would need to be changed -- I'd guess it's mostly renderers for standard JSF components, and those APIs haven't changed since the JSF 1.1 spec was released. I'd think the hardest part might be infrastructure rather than

Re: Validation with DataModel and t:columns

2006-09-25 Thread Mike Kienenberger
It's true that validation occurs, then model update occurs. The text input field follows the same rules. If you're seeing a model value, then it's an old one. It's also true that you cannot use getSubmittedValue and getLocalValue on components in a dataTable unless you are in the middle of the p

Re: managed-beans, spring references, and serializable

2006-09-25 Thread Ingo Düppe
Craig McClanahan schrieb: On 9/25/06, *Craig McClanahan* <[EMAIL PROTECTED] > wrote: What do you thing about this? I would tend to maintain the temporary state information in a separate model bean of some sort, explicitly designed to be Serializ

Re: managed-beans, spring references, and serializable

2006-09-25 Thread Craig McClanahan
On 9/25/06, Craig McClanahan <[EMAIL PROTECTED]> wrote: What do you thing about this?I would tend to maintain the temporary state information in a separate model bean of some sort, explicitly designed to be Serializable, so that there would not be anything special about migrating from one server in

Re: managed-beans, spring references, and serializable

2006-09-25 Thread Craig McClanahan
On 9/25/06, Ingo Düppe <[EMAIL PROTECTED]> wrote: Craig McClanahan schrieb:>> Actually, I'd be surprised (and impressed) if Spring 2.0 did> something different.  The basic philosophy of all the IoC> frameworks I've looked at is that they only need to do their magic > once, when the

Re: managed-beans, spring references, and serializable

2006-09-25 Thread Craig McClanahan
On 9/25/06, Ingo Düppe <[EMAIL PROTECTED]> wrote: Craig McClanahan schrieb:>> Actually, I'd be surprised (and impressed) if Spring 2.0 did> something different.  The basic philosophy of all the IoC> frameworks I've looked at is that they only need to do their magic > once, when the

Re: managed-beans, spring references, and serializable

2006-09-25 Thread Ingo Düppe
Craig McClanahan schrieb: Actually, I'd be surprised (and impressed) if Spring 2.0 did something different. The basic philosophy of all the IoC frameworks I've looked at is that they only need to do their magic once, when the bean is initially created. Whatever happens after

Re: managed-beans, spring references, and serializable

2006-09-25 Thread Craig McClanahan
On 9/25/06, Craig McClanahan <[EMAIL PROTECTED]> wrote: On 9/25/06, Ingo Düppe < [EMAIL PROTECTED]> wrote: Craig McClanahan schrieb:> Shale supports a similar pattern if your session-scoped beans extend> AbstractSessionBean.  The passivate() method will be called when the> bean is about to be swap

Re: managed-beans, spring references, and serializable

2006-09-25 Thread Craig McClanahan
On 9/25/06, Ingo Düppe <[EMAIL PROTECTED]> wrote: Craig McClanahan schrieb:> Shale supports a similar pattern if your session-scoped beans extend> AbstractSessionBean.  The passivate() method will be called when the> bean is about to be swapped out (perhaps to be transferred to another > server) so

Re: managed-beans, spring references, and serializable

2006-09-25 Thread Ingo Düppe
Craig McClanahan schrieb: Shale supports a similar pattern if your session-scoped beans extend AbstractSessionBean. The passivate() method will be called when the bean is about to be swapped out (perhaps to be transferred to another server) so you can release references to resources that canno

Re: managed-beans, spring references, and serializable

2006-09-25 Thread Ingo Düppe
Well my FacesServlet is mapped to *.jsf and the Acegi Security Filter and the OpenSessionInView Filter of Spring wrap my jsf requests :-( And now? Ingo Craig McClanahan schrieb: On 9/25/06, *Ingo Düppe* <[EMAIL PROTECTED] > wrote: Hi Gerald, as soon a ha

Re: Validation with DataModel and t:columns

2006-09-25 Thread Wally Hartshorn
re: "validation occurs before model update" I had a feeling that I would get a reply like that. :-) However, I don't understand why the text input field that is OUTSIDE of the table has its UIInput field updated in time for the validator to examine it, but the text input fields that are INSIDE t

Re: managed-beans, spring references, and serializable

2006-09-25 Thread Slawek
i think that injecting beans in faces-config doesnt make any sense if you have to inject them manually later in java code. i have abandonend this approach and now im using old fashion way: MyBeanFactory that provides spring managed beans - im calling factory's method in every backingbean's

Re: managed-beans, spring references, and serializable

2006-09-25 Thread Matthias Wessendorf
if facesCtx.getCur...() returns null you are not inside a JSF req. are you doing that in a servlet / filter ? .M On 9/25/06, Ingo Düppe <[EMAIL PROTECTED]> wrote: Hi Gerald, as soon a have a running version, I will setup a wiki page :-) But I still have some trouble to get the facescontext.

Re: managed-beans, spring references, and serializable

2006-09-25 Thread Craig McClanahan
On 9/25/06, Ingo Düppe <[EMAIL PROTECTED]> wrote: Hi Gerald,as soon a have a running version, I will setup a wiki page :-)But I still have some trouble to get the facescontext.My FacesContext.getCurrentInstance() return null. Maybe something is wrong with my application.This is the expected behavio

Re: managed-beans, spring references, and serializable

2006-09-25 Thread Ingo Düppe
Hi Gerald, as soon a have a running version, I will setup a wiki page :-) But I still have some trouble to get the facescontext. My FacesContext.getCurrentInstance() return null. Maybe something is wrong with my application. I did the following steps: 1. Start my application. 2. Request some

Re: managed-beans, spring references, and serializable

2006-09-25 Thread Craig McClanahan
On 9/25/06, Gerald Müllan <[EMAIL PROTECTED]> wrote: Maybe there are also other solutions. We did it and it works very finein combinationwith t:saveState.Shale supports a similar pattern if your session-scoped beans extend AbstractSessionBean.  The passivate() method will be called when the bean is

Re: managed-beans, spring references, and serializable

2006-09-25 Thread Gerald Müllan
If it helped you, it would be great if you could make up the little wiki page :) regards, Gerald On 9/25/06, Ingo Düppe <[EMAIL PROTECTED]> wrote: Hi Gerald, this sound to be a smart little solution. But how did you get the spring bean factory. At the point of deserialization I don't have any

Re: managed-beans, spring references, and serializable

2006-09-25 Thread Gerald Müllan
Hi, you should be able to get the current instance to the facesContext like the other times. We retrieve the reference to springs BeanFactory like this: FacesContextUtils.getWebApplicationContext(FacesContext.getCurrentInstance()) Then you are able to get the bean you want to inject: Object n

How to get tomahawk wap project active?

2006-09-25 Thread Sigurd S. Randal
What would it take to activate the myfaces wap project and refactor it so that it will run with the latest myfaces core/tomahawk?   I would like to contribute to this work, but I need a pointer as to where to start.

Re: Refresh JSF Page

2006-09-25 Thread David Chandler
The POST-REDIRECT-GET phase listener can help with this.   http://turbomanage.wordpress.com/2006/08/06/prg-for-jsf/   YMMV, /dmc  On 9/20/06, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: Hi,   I have to provide Refresh Button in all the pages of my JSF application. Please help me how to achieve

Re: Navigation in response to an Exception

2006-09-25 Thread Craig McClanahan
On 9/25/06, Lindholm, Greg <[EMAIL PROTECTED]> wrote: -Original Message-From: Gerald Müllan [mailto:[EMAIL PROTECTED]]Sent: Monday, September 25, 2006 10:41 AMTo: MyFaces DiscussionSubject: Re: Navigation in response to an Exception > Hi,>> what about catching the exception in the action me

Re: managed-beans, spring references, and serializable

2006-09-25 Thread Matthias Wessendorf
Yeah, that sounds smart! Gerald/Ingo, can you add that to our wiki? Maybe others run into the desater? On 9/25/06, Ingo Düppe <[EMAIL PROTECTED]> wrote: Hi Gerald, this sound to be a smart little solution. But how did you get the spring bean factory. At the point of deserialization I don't hav

Re: managed-beans, spring references, and serializable

2006-09-25 Thread Ingo Düppe
Hi Gerald, this sound to be a smart little solution. But how did you get the spring bean factory. At the point of deserialization I don't have any FacesContext or ServletContext reference to initialize the BeanFactory? Regards Ingo Gerald Müllan schrieb: Hi, we have been faced with the sam

Re: Validation with DataModel and t:columns

2006-09-25 Thread Andrew Robinson
That is correct. If you look at the lifecycle of JSF, validation occurs before model update. Validation is meant to occur on submitted values, not model values. Therefore, you can only use values from the request parameters to determine validity during validation. If you need to validate the mode

Re: managed-beans, spring references, and serializable

2006-09-25 Thread Ingo Düppe
Hi Gary, you are right, but isn't this the duty of the IoC (like JSF). The "don't call us, we call you" thing. I don't like the idea to check all the time if my object references are properly injected. Maybe it could be handled by an aspect that checks if all properties are correctly injected.

RE: Navigation in response to an Exception

2006-09-25 Thread Lindholm, Greg
-Original Message- From: Gerald Müllan [mailto:[EMAIL PROTECTED] Sent: Monday, September 25, 2006 10:41 AM To: MyFaces Discussion Subject: Re: Navigation in response to an Exception > Hi, > > what about catching the exception in the action method (i suppose an > action method here) >

Re: managed-beans, spring references, and serializable

2006-09-25 Thread Gerald Müllan
Hi, we have been faced with the same problem in our application. You have to take care that after deserialization the spring beans are injected the "normal" way. We did this by marking spring beans as transient, like you did: private transient ServiceBean _serviceBean; //Setter Letting serial

Re: managed-beans, spring references, and serializable

2006-09-25 Thread Gary VanMatre
>From: Ingo Düppe <[EMAIL PROTECTED]> >> Hi, > > I have a conceptional question. Within my application I define a > managed-bean "registrationController" that gets a reference to a spring > bean "registrationService" by the jsf property injection. The spring > bean is stateless and is not serializ

managed-beans, spring references, and serializable

2006-09-25 Thread Ingo Düppe
Hi, I have a conceptional question. Within my application I define a managed-bean "registrationController" that gets a reference to a spring bean "registrationService" by the jsf property injection. The spring bean is stateless and is not serializable, so I need to define the field reference

Re: Problems with and

2006-09-25 Thread Mike Kienenberger
You can check out the tomahawk 1.1.3 source, and just apply the t:radio patches to it. You just add one line. I think these are the only changes I had to make to get onclick working under facelets. Under jsp, you'd also have to update the Tag file and the tld file. Index: E:/myfaces/myfaces-

Silent Fail in Restore View

2006-09-25 Thread Vivek Pandey
Hi I was earlier using MyFaces 1.1.1 and am trying to move to 1.1.3 right now. I am getting numerous serialization issues which I am fixing one by one. However I am stuck at a point from where I am not able to go forward. My page renders the first time but whenever I request it again (by clicking

Validation with DataModel and t:columns

2006-09-25 Thread Wally Hartshorn
I'm trying to validate input fields within t:columns backed by a DataModel object. These input fields are validated by a custom validator method attached to a hidden input field (so that I can do things like verify that if something is entered in THIS field, then THAT field is blank). What appear

Re: Configurable views via XML File

2006-09-25 Thread Gary VanMatre
>From: "Mosimann Matthias" [EMAIL PROTECTED] > >Hy Everyone >I experimented a little bit with JSF with Kito Mann's book "Java Server Faces in >Action". Now I'm wonder if it is possible to make a JSP(View) configurable with a >simple XML File. So you will be able to disable and enable some eleme

Re: Body onload

2006-09-25 Thread Matthias Wessendorf
can you open an issue on jira and provide a fix ? I think that is missing b/c was not needed by the original programmer. Thanks. Matthias On 9/25/06, Remo Liechti <[EMAIL PROTECTED]> wrote: Hi all We are using myFaces 1.1.3. I have to do some javascript when the page is loaded. But there is no

Re: Navigation in response to an Exception

2006-09-25 Thread Gerald Müllan
Hi, what about catching the exception in the action method (i suppose an action method here) and giving a different outcome back? If you would use spring, it would be lot more easy to handle exceptions. You can define an exception interceptor which you hang in each call of a model method and res

Re: Using Tobago dynamically from jsp ??

2006-09-25 Thread Volker Weber
Take a look at file:///home/weber/work/jsf/jsf-1_1/javadocs/javax/faces/component/UIComponent.html and search for "facet"! UIGridLayout layout = new UIGridLayout(); layout.setRows( "2"); layout.setColumns("1"); This is wrong! you should set rows and columns attribute to

Re: Simple mechanism

2006-09-25 Thread Patrick Dreyer
This was answered already in this maillist under "Authorization via view-handler", but for your convenience I put it below. Best practice for doing authentication/authorization is through a servlet filter. Citation from JavaWorld (http://www.javaworld.com/javaworld/jw-07-2004/jw-0719-jsf.html)

RE: Navigation in response to an Exception

2006-09-25 Thread Lindholm, Greg
(Once more, any help or suggests?) -Original Message- I would like to be able to navigate in response to an exception. I have been able to beat my app into going to an error page when I throw a FacesException but that's all, I haven't been able to figure out any other navigation cases

Re: ADF faces/Trinidad

2006-09-25 Thread Simon Lessard
Hello Aneesha,Yes, you can get it from SVN and it'll be in synch with the SNAPSHOT latest snapshot (Note: The binary in our wiki might not be the latest though). The URL to the repository is http://svn.apache.org/repos/asf/incubator/adffaces/trunkRegards,~ SimonOn 9/25/06, Aneesha Govil < [EMAIL P

Re: Simple mechanism

2006-09-25 Thread Christoph Lassner
There are lots of login mechanisms, most common Tomcats security realms. If you're using Tomcat, it's nearly only a configuration issue. Regards Chris "[EMAIL PROTECTED]" <[EMAIL PROTECTED]> schrieb am 25.09.2006 15:17:32: > Hello > > Is there a good solution for a login check mechanism? Some p

Re: Using Tobago dynamically from jsp ??

2006-09-25 Thread Peter Rabing
Hi Volker, thanks for your hints, I am making good progress. In the meantime I did figure out how to write the controller, but the hint with the ids is quite valuable. Can you point me to some kind of documentation, since valueBinding is not a feature specific to Tobago, but rather to JSF ? I

Simple mechanism

2006-09-25 Thread [EMAIL PROTECTED]
Hello Is there a good solution for a login check mechanism? Some page may be called only if the user has logged in. My idea is, if the user presses the link, a login page is showed. After a successful link the user context is forwarded to the link page. Has anyone a example for such a feature?

Caching MethodBinding

2006-09-25 Thread Ingo Düppe
Hello, I wonder if I am allowed to cache MethodBinding to manged-beans in the application scope? So that I do not have to recreate the MethodBinding object each time again. But what is the impact on the managed-bean, will it be still destroyed by the GC if it is not longer in the according sco

Re: Exception when using myfaces extensions

2006-09-25 Thread Gerald Müllan
You have inserted the reference to the taglib like this: <%@ taglib uri="http://myfaces.apache.org/tomahawk"; prefix="t" %> ? The taglib is read out from the jars; If you have added the jars to your project and they are also deployed with the application there should be no problem. regards, G

Re: Exception when using myfaces extensions

2006-09-25 Thread Kelvin James
Hi, I am using Jboss Portal 2.4 for my applicationI tried with latest jars but still same error,  is there some additional settings required for  this I used the following  jars myfaces-api.jar myfaces-impl.jartomahawk-1.1.3.jar On 9/25/06, Gerald Müllan <[EMAIL PROTECTED]> wrote: Hi,if you really

Re: Using Tobago dynamically from jsp ??

2006-09-25 Thread Volker Weber
Hi Peter, the bindig must be a valueBinding not a methodBinding! e.g. with <%-- content filled by application --%> your bean should provide a method public UIPanel getContentPanel() { if (contentPanel == null) { createPanel(); } return contentPanel } and in c

Re: Exception when using myfaces extensions

2006-09-25 Thread Gerald Müllan
Hi, if you really use "myfaces-all.jar" it is highly recommended to update to the latest stable release, like 1.1.4. Have a look at our downloads section: http://myfaces.apache.org/download.html Then you have to use the uri "http://myfaces.apache.org/tomahawk";. regards, Gerald On 9/25/06,

Re: Exception when using myfaces extensions

2006-09-25 Thread Kelvin James
I tried this one also but same exception is coming. Caused by: org.apache.jasper.JasperException: The absolute uri: http://myfaces.apache.org/tomahawk cannot be resolved in either web.xml or the jar files deployed with this application    at org.apache.jasper.servlet.JspServletWrapper.handleJs

RE: Exception when using myfaces extensions

2006-09-25 Thread Rønnevik , Eivind
Your uri is incorrect :)   It should be   <%@ taglib uri="http://myfaces.apache.org/tomahawk" prefix="t"%> Regards,   Eivind From: Kelvin James [mailto:[EMAIL PROTECTED] Sent: 25. september 2006 13:11To: MyFaces DiscussionSubject: Exception when using myfaces extensions HI I am getting th

Add parameters to navigation rule

2006-09-25 Thread born
Hi, how can I add parameters to the URL of a navigation rule? Or if this not gonna work: How can I redirect to a page without using a navigation rule? I found a URL http://wiki.apache.org/myfaces/Custom_Navigation_Handler which describes exactly what I need, but it doesn't work. Do I have to add

Re: Problems with and

2006-09-25 Thread Thorbjørn Ravn Andersen
Mike Kienenberger skrev den 18-09-2006 01:52: Hey Greg, I finished doing this in my application a couple of weeks ago. I used t:selectOneRadio and t:radio. I had to extend t:radio to allow it to take an onclick attribute. I was going to hold off until the 1.1.4 Tomahawk branch before commit

Re: Portlet wasn't show after portal link clicked

2006-09-25 Thread Stefan Gesigora
Hi!I looked for a exception in my different logs - but no exception! Don't know what it could beAny comments or ideas - or someone with the same error situation?regards, Steven 2006/9/18, Iordanov, Borislav (GIC) <[EMAIL PROTECTED]>: Really make sure you enable logging with myface

Exception when using myfaces extensions

2006-09-25 Thread Kelvin James
HI I am getting the following error when using the myfaces extension components Caused by: org.apache.jasper.JasperException: The absolute uri: http://myfaces.apache.org/extensions cannot be resolved in either web.xml or the jar files deployed with this application     at org.apache.jasper.serv

ADF faces/Trinidad

2006-09-25 Thread Aneesha Govil
Hi,I am looking for the source of ADF/Trinidad demo's source files. I need to see how it works in Java classes but the packaged war at http://people.apache.org/maven-snapshot-repository/org/apache/myfaces/adf/adf-faces-demo/ does not have source. Any idea where can I get it? Do I have to get it fr

RE: MyFaces 1.1.4 with Struts-Faces 1.3.5

2006-09-25 Thread Colin Doyle
Thanks Matthias for fixing this so promptly. I tested the form submission using the 1.1.5 SNAPSHOT, and it works. Best regards, Colin. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Matthias Wessendorf Sent: 24 September 2006 20:57 To: MyFaces Discuss

Re: Using Tobago dynamically from jsp ??

2006-09-25 Thread Peter Rabing
Hi Volker, thanks for your hint. I think I get the idea. From within the jsp page you call some function which then uses the tobago class implementing the tag library directly. This way nothing needs to be compiled. I tried to follow your directions but I still fail to get the link from the jsp

FacesContext for MyFaces portlets

2006-09-25 Thread Pfau, Oliver
Hi,   I have multiple JSF bridged myFaces portlets in one war. The is one FacesContext for all portlets. Is it possible to set up a own FacesContext for each portlet ?   Thanks, Oliver

Re: Configurable views via XML File

2006-09-25 Thread Ricardo Tercero Lozano
I don't think so because it is out of JSF scope.As I said, you can control component rendering with 'rendered' attribute. You can have expressions like:and control rendering with a bean variable. From where that variable is obtained/maintained is not JSF scope. I you can control rendering with an X

AW: Configurable views via XML File

2006-09-25 Thread Mosimann Matthias
Hi Ricardo   So it might be in the next specs?   regards Matthias Von: Ricardo Tercero Lozano [mailto:[EMAIL PROTECTED] Gesendet: Montag, 25. September 2006 10:58An: MyFaces DiscussionBetreff: Re: Configurable views via XML File You can control attribute rendering (JSF tags) through 'render

Re: Configurable views via XML File

2006-09-25 Thread Ricardo Tercero Lozano
You can control attribute rendering (JSF tags) through 'rendered' property. The xml configuration has to be worked on.Ricardo.On 9/25/06, Mosimann Matthias <[EMAIL PROTECTED]> wrote: Hy Everyone     I experimented a little bit with JSF with Kito Mann's book "Java Server Faces in Action". No

Configurable views via XML File

2006-09-25 Thread Mosimann Matthias
Hy Everyone     I experimented a little bit with JSF with Kito Mann's book "Java Server Faces in Action". Now I'm wonder if it is possible to make a JSP(View) configurable with a simple XML File. So you will be able to disable and enable some elements with a simple XML File.   something lik

Re: jsf myfaces wizard

2006-09-25 Thread ::SammyRulez::
it looks like what I need Grazie Mario 2006/9/25, Mario Ivankovits <[EMAIL PROTECTED]>: Hi! > My approach to use a session scoped Managed bean caused some > issues in refresh data and persistence (I'm using hibernate). Take a look a the conversationTag in myfaces sandbox. (http://wiki.apache.or

Re: jsf myfaces wizard

2006-09-25 Thread Mario Ivankovits
Hi! > My approach to use a session scoped Managed bean caused some > issues in refresh data and persistence (I'm using hibernate). Take a look a the conversationTag in myfaces sandbox. (http://wiki.apache.org/myfaces/ConversationTag) This will also help with persistence, it allows you to request a

Re: jsf myfaces wizard

2006-09-25 Thread Fred Janon
Not sure how JSF would integrate into the Spring Web Framework but you might want to look at AbstractWizardFromController in Spring. The Spring MVC is pretty simple. I use JSF and Spring but I don't mix the Web frameworks. Fred --- : SammyRulez: : Mon Sep 25 00: 18: [EMAIL PROTECTED], [EMAIL PRO

jsf myfaces wizard

2006-09-25 Thread ::SammyRulez::
I have a project that needs a couple of wizard-like set of forms (I mean forms that must be filled in sequence). Flow is dynamic so data inserted in the first form is used to determine the content of other forms. My approach to use a session scoped Managed bean caused some issues in refresh data a

Re: Does myfaces has grid component?

2006-09-25 Thread Volker Weber
The sheet component of tobago has dynamic coulumn resizing, but unfortunately you can't use tobago in combination with other jsf component libs. The live demo of tobagos sheet: http://tobago.atanion.net/tobago-example-demo/faces/overview/sheetControl.jsp Regards Volker 2006/9/25, Anthony Hon

Dynamic editable tables using JSF and Ajax

2006-09-25 Thread Aneesha Govil
Hi,I need to develop dynamic tables that support sorting, editing, deletion of rows using JSF and Ajax. Can anyone provide some pointers on how to accomplish this? Would it need a custom component or can it be done on top of the existing h:datatable?Please help!