Re: escape attribute for h:commandLink

2005-01-28 Thread Bruno Aranda - Dev
Hi Alin, Of course you can do that with the existing implementation, just put your h:outputText inside the h:commandLink Regards, Bruno > Hello, > > I need the same functionality of escape attribute from h:outputText for h:commandLink. I know that this should be in JSF specification, but

Re: Why is bean property null?

2005-01-10 Thread Bruno Aranda - Dev
Maybe, you should try to use a valueChangeListener for the selectOneMenu, which listens to changes in the list. Implement a method in your bean that accept a ValueChangeEvent and set the centerId with the new value of the event... The attribute value for the selectOneMenu sets the initial selected

Re: instantiating bean within managed bean

2005-01-10 Thread Bruno Aranda - Dev
Hi Mark, I don't understand very well your problem but I think you have here a problem with hibernate, when saving the user there is a property of Center that is null and in your hibernate mapping files this property has the not-null="true" attribute... I wish I could be more helpful... :-) Bruno

JsCookMenu inside a form

2005-01-04 Thread Bruno Aranda - Dev
Hi, Why does not work the jsCookMenu inside a form? It is possible to use such menu with actions that read the selected items of a list, for instance? Regards, Bruno

Re: jscookmenu probl.

2004-12-24 Thread Bruno Aranda - Dev
Hi Gabon, You should use the jscookMenu component and not a dataList. Your code should be, for example: 'leagues' in your bean should be an array NavigationMenuItems. You set the label, action, icon... in your bean for each NavigationMenuItem in the array. And remember not to put your jsco

Re: Strange Exception out of nowhere

2004-12-22 Thread Bruno Aranda - Dev
Hi Gregg, It seems that your application container is trying to load a persisted session with not serializable objects. Maybe this link can help you: http://forum.java.sun.com/thread.jspa?threadID=569696&messageID=2816891 Good luck, Bruno > Yesterday, everything worked fine. Today I have star

JsCookMenu inside a form, does it work?

2004-12-21 Thread Bruno Aranda - Dev
Hi, Does the JsCookMenu work inside a form? My problem is that I want to put this menu between two components that have to be in the same form... any hints? Bruno

Programatically implementing a JsCookMenu: MethodBinding?

2004-12-20 Thread Bruno Aranda - Dev
Hi, I am creating a JsCookMenu that loads dinamically. It is there a way to throw bind the action of a navigation item to a method using a MethodBinding class? I see it can only accept String as parameter... TIA Bruno