[jboss-user] [JBoss Seam] - Re: problem on Internet Explorer

2008-02-16 Thread kai222
I finally found out the reason why I had the problems in my application with IE6. First, I added a tag inside the in my xhtml. In the code above I removed this tag to shorten the code the result was a form in a form. Firefox can handle this, IE not. Silly error. Second, the Seam Wiki exa

[jboss-user] [JBoss Seam] - Re: problem on Internet Explorer

2008-02-13 Thread kai222
I tried it now out on two other PCs with IE6 and Firefox. It doesn't work on IE6 and Firefox 1.0, neither for my application nor for the seamspace example from 2.0.1.GA. On Firefox 2 it's ok. There are no script errors. This is my xhtml: | http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional

[jboss-user] [JBoss Seam] - Re: problem on Internet Explorer

2008-02-10 Thread kai222
Shane, thanks for your effort! I have to test this in a different way. The seam-space example from Seam 2.0.1.GA doesn't work in my Internet Explorer 6 neither. Do you just have an idea which of the thousands of configuration possibilities of IE is maybe disabled/enabled? I thought I had the de

[jboss-user] [JBoss Seam] - problem on Internet Explorer

2008-02-09 Thread kai222
Are there any known problems with uploading files in Seam 2.0.1.GA? On Firefox all's working fine (I followed the 5 part tutorial in Seam Wiki), but on Internet Explorer 6... nothing happens when pressing the Upload button - other functionalities work fine in IE. View the original post : h

[jboss-user] [JBoss Seam] - Re: FlushModeType.MANUAL in conversation

2007-12-17 Thread kai222
I solved it myself by manually switching the entityManager.setFlushMode just before the query invocation: | ... | private boolean emailExists() { | entityManager.setFlushMode(javax.persistence.FlushModeType.COMMIT); | List existing = (List) |

[jboss-user] [JBoss Seam] - Re: FlushModeType.MANUAL in conversation

2007-12-17 Thread kai222
The question behind my problem is: How do other developers validate certain user input against the database within a long-running conversation? Does nobody else have problems with transaction handling? View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4113527#4

[jboss-user] [JBoss Seam] - Re: How to retain selected value in dropdown list...

2007-12-17 Thread kai222
Is the key id of your entity bean an object e.g. of type Long? If so, maybe it helps when you overwrite the equals and hashCode method in the entity class. This was the only thing that helped me (under 2.0.0.CR3) when I used s:convertEntity to assign the selected item to the object in the list.

[jboss-user] [JBoss Seam] - FlushModeType.MANUAL in conversation

2007-12-16 Thread kai222
Hi, I cannot control the synchronization from a persistent object to the database. The more I read and the more I try out the more I get confused. I hope that somebody can give me a helping hint. For testing I generated a simple ear project with seam-gen (Seam 2.0.0.GA) and added an entity cla