[jboss-user] [JBoss Seam] - Re: Multiple Window/Tabs isolated conversations

2007-03-07 Thread h.cahyadi
kukeltje wrote anonymous wrote : So my conclusion is that there is something wrong with the way you start new conversations Yes you are right, when I try to use ctrl+n the behaviour is exactly the same with in the firefox, is there anybody here have sucess story with seam + facelets + jboss

[jboss-user] [JBoss Seam] - Re: Multiple Window/Tabs isolated conversations

2007-03-01 Thread kukeltje
multiple windows works perfectly here in FF. If you only see the correct behaviour in IE and you open windows not via ctrl-n but e.g .via the start menu, then you get a completely new session. That way it has always worked in IE to have multiple session. So my conclusion is that there is

[jboss-user] [JBoss Seam] - Re: Multiple Window/Tabs isolated conversations

2007-02-28 Thread h.cahyadi
petemuir wrote: anonymous wrote : The Seam Application Framework. (btw upgrade to a newer version) I have upgrade to seam 1.1.5 GA and also read the documentation about the The Seam Application Framework, but if we use that method to do paging, is there any method to display the status of

[jboss-user] [JBoss Seam] - Re: Multiple Window/Tabs isolated conversations

2007-02-28 Thread ccurban
I think you are simply missing some @In tags here. Actually you are just outjecting the page data to the conversation, but you don't use them for calculating the values for the next page. Therefore you use the data in the session-scoped SFSB for calculation. View the original post :

[jboss-user] [JBoss Seam] - Re: Multiple Window/Tabs isolated conversations

2007-02-28 Thread h.cahyadi
ccurban, I have tried to add @In annotations, but when I test it using multiple tabs in firefox I still getting that the stated is not isolated between the tabs, but in internet explorer I try to open two windows and that works fine, I don't sometimes I get stressed with this browser different

[jboss-user] [JBoss Seam] - Re: Multiple Window/Tabs isolated conversations

2007-02-28 Thread [EMAIL PROTECTED]
anonymous wrote : I have upgrade to seam 1.1.5 GA 1.2 is out. anonymous wrote : and also read the documentation about the The Seam Application Framework, but if we use that method to do paging, is there any method to display the status of paging like : | total number of data, total number

[jboss-user] [JBoss Seam] - Re: Multiple Window/Tabs isolated conversations

2007-02-28 Thread h.cahyadi
In the version 1.2 is there any changes with the .xml file descriptor, coz I look at the JIRA and found some changes, to the descriptor file, if in my application architecture I separate the business logic and the presistence logic, can I still used the entity query, currently I stuck with 2

[jboss-user] [JBoss Seam] - Re: Multiple Window/Tabs isolated conversations

2007-02-27 Thread petemuir
h.cahyadi wrote : Are you sure that we must put the scope into conversation? bacause in the booking demo I saw the the scope is SESSION and it can perform multiple windows transaction Thtats the way I would do it. anonymous wrote : anonymous wrote : | | Why not just use the paging built

[jboss-user] [JBoss Seam] - Re: Multiple Window/Tabs isolated conversations

2007-02-27 Thread h.cahyadi
Thanx petemuir for your sugestion, but until now this problem not yet solved in my application, any other suggestion? Thanx and Regards, -haric- View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4023010#4023010 Reply to the post :

[jboss-user] [JBoss Seam] - Re: Multiple Window/Tabs isolated conversations

2007-02-27 Thread svadu
h.cahyadi wrote : Are you sure that we must put the scope into conversation? bacause in the booking demo I saw the the scope is SESSION and it can perform multiple windows transaction | | anonymous wrote : | | Why not just use the paging built into Query objects? | | | | what

[jboss-user] [JBoss Seam] - Re: Multiple Window/Tabs isolated conversations

2007-02-27 Thread svadu
Another solution would be to use request scope and pass search parameters in url. In any case it may cost you more performance due to bigger number of DB trips in comparison to session scope. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4023152#4023152

[jboss-user] [JBoss Seam] - Re: Multiple Window/Tabs isolated conversations

2007-02-26 Thread petemuir
Conversations are isolated (they aren't propogated, but you could jump to another one using the conversation switcher) between browser tabs/windows by default. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4022800#4022800 Reply to the post :

[jboss-user] [JBoss Seam] - Re: Multiple Window/Tabs isolated conversations

2007-02-26 Thread h.cahyadi
OK let me give a more complete description Environment : - Seam 1.1.1 GA - Jboss Portal 2.4 GA - MyFaces 1.1.4 - OS Win XP I have an application that manage internal document, and if the number of documents is very large, I perform data paging, so I only display 10 documents per page, the

[jboss-user] [JBoss Seam] - Re: Multiple Window/Tabs isolated conversations

2007-02-26 Thread petemuir
Surely the controller should be conversation scoped not session scoped for the behavior you want? Why not just use the paging built into Query objects? View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4022816#4022816 Reply to the post :

[jboss-user] [JBoss Seam] - Re: Multiple Window/Tabs isolated conversations

2007-02-26 Thread h.cahyadi
Are you sure that we must put the scope into conversation? bacause in the booking demo I saw the the scope is SESSION and it can perform multiple windows transaction anonymous wrote : | Why not just use the paging built into Query objects? | what do you mean by that, could you explain