[jboss-user] [JBoss Seam] - Re: Seam gen edit pages, update without press save button

2007-07-12 Thread idylle
Hi, the Rollback didn't work in my case. I've kept the flush-mode=manual but instead of the trick propagation=none, I've enforced the refresh of my entity before displaying the page (with this in my EntityBean: getEntityManager().refresh(getInstance());) It works and seems cleaner. View

[jboss-user] [JBoss Seam] - conversation-time-out ignored?

2007-07-06 Thread idylle
Hi, I've got a problem with conversation-timeout : it seems that it never occurs. I set : core:manager concurrent-request-timeout=500 | conversation-timeout=60 | conversation-id-parameter=cid |

[jboss-user] [JBoss Seam] - Re: Seam gen edit pages, update without press save button

2007-07-06 Thread idylle
Hi, maybe you should put the following in your pages.xml : begin-conversation join=true flush-mode=manual / I think the flush-mode=manual will help you. I found a post about this in this forum once but I haven't kept the url, sorry. View the original post :

[jboss-user] [JBoss Seam] - Re: Seam gen edit pages, update without press save button

2007-07-06 Thread idylle
I've used a workaround for that problem. Not sure it's the right thing to do and I don't know if it can suit in your case : I use propagation=none on my button : s:button id=done |value=Retour | propagation=none |

[jboss-user] [JBoss Seam] - Re: Seam gen edit pages, update without press save button

2007-07-06 Thread idylle
You're right, but I haven't find a way to do it clean... View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4061325#4061325 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4061325 ___

[jboss-user] [JBoss Seam] - Re: why conversation-timeout doesn't work properly?

2007-07-05 Thread idylle
Hi, I've got a problem with conversation-timeout too : I set : core:manager concurrent-request-timeout=500 | conversation-timeout=60 | conversation-id-parameter=cid | conversation-is-long-running-parameter=clr/ in components.xml (I

[jboss-user] [JBoss Seam] - value of selectItems not posted in the form?

2007-06-21 Thread idylle
Hi, I've got a problem with the h:selectOneMenu and s:selectItems elements. If I use h:selectOneMenu with f:selectItem (id=colaff in the code below) , the value chosen in the select box is part of the values submitted with the form, no problem. But if I use h:selectOneMenu with

[jboss-user] [JBoss Seam] - Re: value of selectItems not posted in the form?

2007-06-21 Thread idylle
Here are my beans : The entity bean (just the attributes) : | @Entity | @Table(name = collectivites, schema = public) | public class Collectivites implements java.io.Serializable { | | private int colidt; | private Typcol typcol; | private Departements departements;

[jboss-user] [JBoss Seam] - Re: value of selectItems not posted in the form?

2007-06-21 Thread idylle
no, the page is just redisplayed with the whole list of results, ignoring the tpcidt and the select box is back to Select... instead of having my choice selected. If I put this : | h:commandButton id=search value=Chercher / | | | in my command button, it works but : | | 1- I need

[jboss-user] [JBoss Seam] - Re: value of selectItems not posted in the form?

2007-06-21 Thread idylle
But I don't understand why the other elements in the form are Ok and just this one is a problem. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4056408#4056408 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4056408

[jboss-user] [JBoss Seam] - Re: Can't set Character encoding for submitted form data

2007-06-15 Thread idylle
You're right Ramazan, adding useBodyEncodingForURI=true in my server.xml solved my problem. Thanks a lot! View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4054778#4054778 Reply to the post :

[jboss-user] [JBoss Seam] - Re: Can't set Character encoding for submitted form data

2007-05-02 Thread idylle
Hi, no, sorry, no answers and I've found no work-around yet. It's a pity because I can't do without accent... I'll post a reply if I find something, hope you'll do it too if you find. :) View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4042344#4042344 Reply to

[jboss-user] [JBoss Seam] - Re: Can't set Character encoding for submitted form data

2007-05-02 Thread idylle
Thanks for your help, the browser seems to detect the UTF-8, no problem. I've already the charset in the meta tag, I've tried to add the html lang=fr but it changes nothing. Is it normal that I don't see the character-encoding-filter tag in http://jboss.com/products/seam/web-1.2.xsd ? Can it be

[jboss-user] [JBoss Seam] - Re: Can't set Character encoding for submitted form data

2007-05-02 Thread idylle
Yes, I've got the seam filter and I've added the encoding filter (the lines quoted in my first post). I've tried to remove the seam filter and let just the encoding filter to see what happens but it doesn't change anything. View the original post :

[jboss-user] [JBoss Seam] - Can't set Character encoding for submitted form data

2007-04-19 Thread idylle
Hi, I've got a problem with character with accent in my forms. I type a é in a inputtext field, I submit the form, and then the character appears like é. I've read in the documentation that I should put that line : web:character-encoding-filter encoding=UTF-8 override-client=true / in the

[jboss-user] [JBoss Seam] - bpchar conversion with PostgreSQL

2007-03-15 Thread idylle
Hi, I've got a problem when reverse-engineering my PostgreSQL base with seam 1.2.0PATCH1. Entity beans are well generated but when I restart my server I got the following error : --- MBeans waiting for other MBeans --- | ObjectName:

[jboss-user] [JBoss Seam] - Problem with length validator on inputtext

2007-03-14 Thread idylle
Hi, I'm using seam 1.2.0PATCH1 with a PostgreSQL Base. I've got a problem with Validator Length. Here is my entity code : @Column(name = colaff, nullable = false, length = 1) | @NotNull | @Length(max = 1) | public char getColaff() { | return this.colaff; | }

[jboss-user] [JBoss Seam] - Re: Navigating through results pages problem

2007-03-01 Thread idylle
Increasing the permgen works for me too, thanks a lot! I'm not using seam-gen because Hibernate Tools allow me to choose which tables are included in the reverse-engineering. I think it's not the case now with seam-gen. I'll try to use seam-gen in Seam 1.2 again. Maybe I haven't seen some

[jboss-user] [JBoss Seam] - Navigating through results pages problem

2007-02-28 Thread idylle
Hi, I'm using the Hibernate Tools Code Generation to generate a seam application. It's working fine but I've got a problem when navigating through the results of a research. My case is : In the Find page, I fill in criterias, then click on Find. I get several answers and the button next page