[jboss-user] [JBoss Seam] - DataSource

2007-10-21 Thread mrohad
is there anyway to get reference to the datasource from the EntityManager? View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4097241#4097241 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4097241

[jboss-user] [JBoss Seam] - reports

2007-10-16 Thread mrohad
I would to generete very simple HTML or PDF reports on the SERVER-SIDE and print those(the server machine should print)? any suggestion?anyone done such a thing before using jboss seam? thank u! View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4095515#4095515

[jboss-user] [JBoss Seam] - Re: print PDF itext

2007-10-03 Thread mrohad
I don't mind print it on the server machine. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4090979#4090979 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4090979 ___ jboss-user

[jboss-user] [JBoss Seam] - iText and Hebrew/arabic

2007-09-22 Thread mrohad
iYext worked great for me until I started adding text in hebrew or arabic.. in the iText documentation it seem to be supported yet it doesn't work I tried to change to font to times but it didn't help what do u think? thanks View the original post :

[jboss-user] [JBoss Seam] - Conversation Ended - timeout

2007-09-02 Thread mrohad
I've a datatable onmouseover(using a4j:support) I'm rendering a panel with a lot of details when I'm moving fast on the table I get an exception screen The conversation ended, timed out or was processing another request how can I prevent this case from happening? I tried to use

[jboss-user] [JBoss Seam] - EntityQuery Question

2007-08-27 Thread mrohad
when I call the EntityHome.persist() and then using the EntityQuery.resultset for the same entity bean the resultset doesn't retrieve the new entity I'd just persisted... when i am calling entityQueey.refresh it does work... is there any workaround for that? otherwise how can I access the

[jboss-user] [Installation, Configuration DEPLOYMENT] - acess servlet remotly

2007-08-25 Thread mrohad
Hello , I just installed Jboss 4.2.1GA I deployed simple web application with one simple servlet when I access http://localhost:8080/myApp/test it works fine when I try to access http://myIPAddress:8080/myApp/test I gey 404 , is there anyting I should do in order to turn remote access on? thank

[jboss-user] [JBoss Seam] - Conversation Lost

2007-08-21 Thread mrohad
Hi , I've a EnitytHome in scope conversation I call this entityHome many time from the same page using ajax4jsf commandLinks , on the second call it seem like the entityHome.instance is null after I already set the Id and saw that the instance was full before.. is it mean my conversation lost

[jboss-user] [JBoss Seam] - Re: Conversation Lost

2007-08-21 Thread mrohad
I fixed it I added @begin(join=true) is it mandatory? View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4076433#4076433 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4076433 ___

[jboss-user] [JBoss Seam] - Re: editable table

2007-08-20 Thread mrohad
smithbstl - can u please send code example? View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4075649#4075649 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4075649 ___ jboss-user

[jboss-user] [JBoss Seam] - Re: java.lang.NoClassDefFoundError: com/vladium/emma/rt/RT

2007-08-20 Thread mrohad
I added th emme.jars to jboss server lid folder and ot solved this prob. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4075841#4075841 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4075841

[jboss-user] [JBoss Seam] - Re: java.lang.NoClassDefFoundError: com/vladium/emma/rt/RT

2007-08-20 Thread mrohad
I mean lib.. S:\jboss-4.2.1.GA\server\default\lib View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4075843#4075843 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4075843 ___

[jboss-user] [JBoss Seam] - Re: EntityHome few instances

2007-08-20 Thread mrohad
thanks for replying , if i have xhtml page and I want to use 2 instance of Customer can I use somehow CustomerHome(extends Entityhome) twice or do I've to use component that holds two instances of CustomerHome? thanks again. View the original post :

[jboss-user] [JBoss Seam] - Re: EntityHome few instances

2007-08-20 Thread mrohad
do I've to create a new component for that and outject those both instances or can I somehow anounce in the xhtml the uses of two instances ofCustomerHome? can you please provide code example View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4076029#4076029 Reply

[jboss-user] [JBoss Seam] - ajax and EntityHome (Conversation) bug?!

2007-08-18 Thread mrohad
I set my EntityHome to be in Conversation scope. I am accesing it from the same page via ajax support and then via ajac command , in the first ajax call I setId(1) in the second ajax call I am trying to update() but it seem that the id = null is that a bug? or is there anything I don't do right?

[jboss-user] [JBoss Seam] - Re: ajax and EntityHome (Conversation) bug?!

2007-08-18 Thread mrohad
yes I do.. my xhtml: | ?xml version=1.0 encoding=Windows-1255 ? | !DOCTYPE composition PUBLIC -//W3C//DTD XHTML 1.0 Transitional//EN | http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd; | | ui:composition xmlns=http://www.w3.org/1999/xhtml; |

[jboss-user] [JBoss Seam] - Re: ajax and EntityHome (Conversation) bug?!

2007-08-18 Thread mrohad
what i am trying to do here is: a table of customers when someone clikc on spesfic row(customer) then I show a pop-up with the customer details and then I would like to change the details and press update. when I add the following code to pages.xml: | page view-id=/customer/index.xhtml

[jboss-user] [JBoss Seam] - Re: ajax and EntityHome (Conversation) bug?!

2007-08-18 Thread mrohad
ok , I solved one thing I added @Begin(join=true) annotation to the first method I'm calling but now i've different problem the popup doesn't send the new data I enter in the input boxes to the bean ...is it because of the conversation?...what's going on.. View the original post :

[jboss-user] [JBoss Seam] - ajax4jsf+seam2.0+conversation prob

2007-08-18 Thread mrohad
ok , sorry for the mess in my last msg here is my prob: I've a datatTable (I'm getting the rows from EntityQuery) when I click on a row I open a modalPanel with the fields the fields are bind to EntityHome and onRowClick I set the Entityhome Id using ajax:support everything works so far now I am

[jboss-user] [JBoss Seam] - EntityHome few instances

2007-08-17 Thread mrohad
can I've few instances of the entity using EntityHome? View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4075221#4075221 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4075221 ___

[jboss-user] [JBoss Seam] - DataModal and a4j:support

2007-08-16 Thread mrohad
I've a rich:dataTable and onRowClick I am calling an actionListener in a back bean(using a4j:support) , now I would like to get the row I clicked my back bean extends EntityQuery on the actionlistener I call the method getDataModelSelection() but I always get the first row... how can I fix

[jboss-user] [JBoss Seam] - Re: DataModal and a4j:support

2007-08-16 Thread mrohad
I've 2 problems 1)when I'm calling selectCustomerFromTable i am always getting the first row 2) when I calling the update method updatecustomer is empty... any idea? | @Scope(ScopeType.CONVERSATION) | @Name(customerList) | public class CustomerList extends EntityQuery { | |

[jboss-user] [JBoss Seam] - dynamic dataTable

2007-08-02 Thread mrohad
I would like to add new line to dataTable as a new row of input boxes I'll fill the new row with data and press save then the row will become reguler row in the table. is there any JSF componenet that can do that? otherwise if I want to be able to add more then one row before saving how can I

[jboss-user] [JBoss Seam] - Re: dynamic dataTable

2007-08-02 Thread mrohad
if I wasn't clear this is what I want: _ |col-1|col-2| |___fdfdsfdsf__|___dsfdsf| data from DB |___dsfdsf|___dsfdsf| data from DB |_ _ _ _ __ _ _ | _ _ _ _ _ _ _| New Row1 using input boxes Added |_ _ _ _ __ _ _ | _ _ _ _ _ _ _| New

[jboss-user] [JBoss Seam] - Re: dynamic dataTable

2007-08-02 Thread mrohad
what about UI , shouldI add the new line with javascript or there is control that already do that? View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4070056#4070056 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4070056

[jboss-user] [JBoss Seam] - Re: dynamic dataTable

2007-08-02 Thread mrohad
thanks! i've one more open questions my exisitng data is not editable andthe new rowis editable how do you suggest I'll make the new row made out of input boxes and the rest of the rowsout of just labels? View the original post :

[jboss-user] [JBoss Seam] - Re: dynamic dataTable

2007-08-02 Thread mrohad
so let see if I understood.. the s:button add new Elemnt to the List and go back to the page? now I've the check if the element is empty then I put inputbox instead of lables? and of course I better do so with ajax , right? View the original post :

[jboss-user] [JBoss Seam] - s:converEntity + rich:suggestionBox

2007-08-01 Thread mrohad
I'm trying to use rich auto complete tag with the convertEntity converter and it causing me a problem right when I click A in the inputText I get an exception: anonymous wrote : | 15:59:49,218 INFO [STDOUT] Hibernate: select employee0_.ID as ID33_, employee0_.NAME as NAME33_,

[jboss-user] [JBoss Seam] - Re: s:converEntity + rich:suggestionBox

2007-08-01 Thread mrohad
thanks , so what do you suggest? is there any workaround? View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4069597#4069597 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4069597 ___

[jboss-user] [JBoss Seam] - Re: Seam Gen

2007-07-31 Thread mrohad
yes , i was talking about many-to-one associations I've a table USER and the user has many columns: id user_name pass email city_code the city_code column has a forigen key to CITIES table which has the columns: code name in some xml file or other config file I've parameter

[jboss-user] [JBoss Seam] - Re: Seam Gen

2007-07-31 Thread mrohad
great , can u give me a tip how to implement it? View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4069352#4069352 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4069352 ___ jboss-user

[jboss-user] [JBoss Seam] - Re: Seam Gen

2007-07-30 Thread mrohad
well 1st in the insert/update/read(table columns) I would take the columns names from the DB table column comment(it's will be much easier for different languages) 2nd i am not sure how but some of the foriegn keys pointing on codes tables and should look like a drop down list in

[jboss-user] [JBoss Seam] - Re: Seam Gen

2007-07-30 Thread mrohad
I'm trying to change the template to take the column comment from the DB instead of the column name I found the line I've to change: ui:define name=label${componentProperty.name}/ui:define but what is componentProperty , how can I retrieve the comment? thanks! View the original post :

[jboss-user] [JBoss Seam] - Re: Seam Gen

2007-07-30 Thread mrohad
sounds great , will it work with Seam 2beta? what do u think about my 2nd point? View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4068752#4068752 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4068752

[jboss-user] [JBoss Seam] - Seam Gen

2007-07-29 Thread mrohad
Is there any documentation or any test case how to change seam gen? i.e I would like to have drop down list for codes-tables View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4068539#4068539 Reply to the post :

[jboss-user] [JBoss Seam] - Re: editable table

2007-07-16 Thread mrohad
no one knows? i would like to edit a table right on the page and click save. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4064668#4064668 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4064668

[jboss-user] [JBoss Seam] - editable table

2007-07-15 Thread mrohad
anyone knows a jsf editable datatable component? thanks! View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4064286#4064286 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4064286 ___

[jboss-user] [JBoss Seam] - Seam-Gen few questions

2007-07-14 Thread mrohad
1) when seam-gen genrete screens(create/update) can I somehow force it to generete drop down lists for some codes table that connected to the genereted table? 2)how can I change the name of the columns in the screen? can I make seam-gen use the coulmn comment or anything like that? thanks.

[jboss-user] [JBoss Seam] - ajax4jsf + ScopeType.CONVERSATION

2006-10-16 Thread mrohad
ajax4jsf working for me only when the SFSB is using the SESSION Scope when i change the Scope to Conversation it doesn't preserve the state.. any idea why? View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=3978482#3978482 Reply to the post :

[jboss-user] [JBoss Seam] - Re: ajax4jsf + ScopeType.CONVERSATION

2006-10-16 Thread mrohad
thanks , I'll check the booking example View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=3978541#3978541 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3978541 ___ jboss-user mailing

[jboss-user] [JBoss Seam] - @factory and Contexts

2006-10-16 Thread mrohad
I am using the Factory annotation many times and it might cause a problem when a user choose a different language because then all my queries are different and has to rerun... I wonder if there is a way to clean the factory cache , what about Contexts.destroy(converstionCopntext)? View the

[jboss-user] [JBoss Seam] - Seam 1.1

2006-10-15 Thread mrohad
when will you release Seam 1.1? Thanks View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=3978374#3978374 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3978374 ___ jboss-user mailing

[jboss-user] [JBoss Seam] - javascript navigation

2006-09-26 Thread mrohad
is it possible to navigate using javascript? i've a iframe and on button click I would like to change the iframe src (src=home.seam) but I would like first to call homeAction.init method I can't use pages.xml because I don't like to call this method everytime I refresh this page.. View the

[jboss-user] [JBoss Seam] - Re: javascript navigation

2006-09-26 Thread mrohad
thanks , but I didn't mean ajax action , I would like to navigate to a different page using JavaScript and before the rendering of the page I would like to call a method.. when i am clicking on the s:link button it looks like it call page.seam?actionMethod=sessionBean.method but when i am

[jboss-user] [EJB 3.0] - Re: caching onetomany relation

2006-09-26 Thread mrohad
just wonder what is the java command to manualy evict the collection? thanks View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=3974406#3974406 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3974406

[jboss-user] [JBoss Seam] - Re: Seam Object in JSP Scriptlet

2006-09-25 Thread mrohad
what about ENUM ? View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=3973805#3973805 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3973805 ___ jboss-user mailing list

[jboss-user] [EJB 3.0] - @where

2006-09-24 Thread mrohad
can I use @where on getCollection() method and make the Where clause to be dynamic? View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=3973746#3973746 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3973746

[jboss-user] [JBoss Seam] - Re: Oracle ADF

2006-09-23 Thread mrohad
thanks , I can make ADF/Trinidad work forme , but not with ajax4jsf , when i am adding ajax4jsf.jar to my web-inf/lib the ADF components stop getting rendered...any idea? Thanks again View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=3973683#3973683 Reply to the

[jboss-user] [JBoss Seam] - Re: Oracle ADF

2006-09-22 Thread mrohad
I am using Trinidad which is the same as ADF and it doesn't work , I wonder if u can tell me why web.xml: ?xml version=1.0 encoding=UTF-8? | web-app version=2.4 xmlns=http://java.sun.com/xml/ns/j2ee; xmlns:xsi=http://www.w3.org/2001/XMLSchema-instance;

[jboss-user] [JBossCache] - Jgroup exception while not connected to the interent

2006-09-22 Thread mrohad
i am using jboss 2nd level cache to cahce my entity beans but now after I added jgroups.jar to my project and the xml below i am getting many excpetion everytime i am not connected: | 14:56:35,103 ERROR [UDP] failed sending message | java.lang.Exception: dest=/224.0.0.36:55566 (63 bytes) |

[jboss-user] [JBoss Seam] - Integrating Seam and Trinidad

2006-09-20 Thread mrohad
I tried to integrate Trinidad with my current application that already using SEAM/Facelets/Tomohowak/AJAX4JSF it doesn't work , I get a warning (Unsupported component-family/renderer-type) for each trinidad tag I put in my JSFs... anyone done such a thing before(maybe even ADF)? can you please

[jboss-user] [JBoss Seam] - Re: how can i control seam for stopping RENEW the tables in

2006-09-19 Thread mrohad
another option is validate View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=3972504#3972504 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3972504 ___ jboss-user mailing list

[jboss-user] [JBoss Seam] - extend org.jboss.seam.Component functionality

2006-09-18 Thread mrohad
I would like to extend org.jboss.seam.Component functionality , how can I do such a thing? I tried to put the class in my src folder but then I am getting class cast exception... Thanks View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=3972252#3972252 Reply to

[jboss-user] [JBossCache] - EJB3.0 cache

2006-09-13 Thread mrohad
I am using hibernate with 2nd level cahce and i've some quesions regarding the concurrent cache strategy: 1) I've 2 entities Event and EventText for each Event there are many EventText EventText is an entity that I am only inserting(never update/delete) but it hold one Event and Event is an

[jboss-user] [JBossCache] - Re: EJB3.0 cache

2006-09-13 Thread mrohad
Thanks! 2) and here I should use TRANSACTIONAL on Event , right? View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=3971247#3971247 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3971247

[jboss-user] [JBoss Seam] - Re: security question

2006-09-13 Thread mrohad
no one knows? if I've h:outputtext value=#{User.currentAmount} / can someone mess my html and outject this value to the server? View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=3971249#3971249 Reply to the post :

[jboss-user] [EJB 3.0] - Re: Entity Cache Question

2006-09-12 Thread mrohad
ok , thanks.. I rethought about that and i've 2 more question.. 1) I've 2 entities Event and EventText for each Event there are many EventText EventText is an entity that I am only inserting(never update/delete) but it hold one Event and Event is an entity that can be changed once in few weeks

[jboss-user] [JBoss Seam] - security question

2006-09-12 Thread mrohad
i've a page for user profile editing my User has a currentMoneyAmount property. in my JSF I show User.currentMoneyAmount as output text this is a edit screen , I am outjecting the properties to some SB and do em.merge(editedUser) can hacker or anyone else who knows seam make my page outject

[jboss-user] [EJB 3.0] - Entity Cache Question

2006-09-10 Thread mrohad
I've a DB table that we only add rows to it , we never update nither delete from this table. what kind of caching strategy do you recommend? CacheConcurrencyStrategy type I guess.. Thanks View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=3970602#3970602 Reply to

[jboss-user] [EJB 3.0] - Re: Entity Cache Question

2006-09-10 Thread mrohad
but if I set the cache to be READ_ONLY how will the cache know I added a new row? Thanks! View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=3970613#3970613 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3970613

[jboss-user] [JBoss Seam] - f:facet Facet Tag can only have one child UIComponent

2006-09-09 Thread mrohad
I am getting a bizzare exception here , any idea? my code: |ui:define name=body | | f:view |h:form | h2Events List for - h:outputText value=#{category.name}//h2 | | t:dataTable var=catEventsvar | value=#{catEvents} |

[jboss-user] [JBoss Seam] - Re: f:facet Facet Tag can only have one child UIComponent

2006-09-09 Thread mrohad
I changed | h:outputText value=#{#{catEventsvar.description}} / | to | h:outputText value=#{catEventsvar.description} / | still doesn't work! :-( View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=3970523#3970523 Reply to the post :

[jboss-user] [JBoss Seam] - Re: f:facet Facet Tag can only have one child UIComponent

2006-09-09 Thread mrohad
I had some other mistake on the page but now it's working.. the exceptions messeges are so incorrect sometimes.. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=3970524#3970524 Reply to the post :

[jboss-user] [JBoss Seam] - Multi lang question

2006-09-08 Thread mrohad
we thought about multi lang solution for our app and I wonder what is your opinion... any text column in our DB can be translate to many languages.. we thought to create another table for each table that has a text column that will hold the id,lang,new_text EJB 3.0 wise , we had Category

[jboss-user] [JBoss Seam] - Re: Step-by-step localization guide

2006-09-04 Thread mrohad
that's a great - thanks , I wonder what design pattern do you use with seam/ejb3.0 in order to retrieve text in different languges from the db to the JSF pages View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=3969196#3969196 Reply to the post :

[jboss-user] [JBoss Seam] - LazyInitializationException and caching

2006-09-03 Thread mrohad
Hello all! Code is Entity bean. and I am caching all Codes using static HashMap.. when I am trying to retieve list of Code and sending the result to my register.jsp i am getting the following exception... any idea way? I would like to keep them deattached and I wonder if I can bring all their

[jboss-user] [JBoss Seam] - Re: LazyInitializationException and caching

2006-09-03 Thread mrohad
never mind I solved it , I changed my FetchType to EAGER thanks View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=3969095#3969095 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3969095

[jboss-user] [JBoss Seam] - Re: 2 DataModel questions

2006-09-01 Thread mrohad
here is an example | TABLE BORDER=2 CELLPADDING=4 | TR TH COLSPAN=2Suggestion #1/TH /TR | TR TD#1 status - Open/TD TD12/12/2001/TD /TR | TR TD#1 status - Compiling/TD TD3/12/2002/TD /TR | TR TD#1 status - Acctped/TD TD5/10/2003/TD /TR | TR TH COLSPAN=2Suggestion #2/TH

[jboss-user] [JBoss Seam] - Re: Partial page rendering

2006-08-31 Thread mrohad
try to use ajax4jsf , you can rerender regions in your page. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=3968533#3968533 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3968533

[jboss-user] [JBoss Seam] - 2 DataModel questions

2006-08-31 Thread mrohad
1) I would like to click on a button on a spesific row in my table and to show another table regarding this row , is it possible to use more then one DataModel in the same SB , otherwise can I send my DataModelSelection to another SB?or do I have to use the id as requestParam here? 2)I would

[jboss-user] [JBoss Seam] - Re: 2 DataModel questions

2006-08-31 Thread mrohad
thanks , another question is how to nested table , on row click I would like to open a table in the row beloe the clicked row , is it possible? thanks View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=3968596#3968596 Reply to the post :

[jboss-user] [JBoss Seam] - Re: 2 DataModel questions

2006-08-31 Thread mrohad
Thanks - that's a great solution for my second problem , regarding nested tables , is it working with dataModel? did you see any Seam example for that? can I use some how panelGrid in order to make it fill the all row? View the original post :

[jboss-user] [JBoss Seam] - Re: How to use graphicImageDynamic with Seam?

2006-08-31 Thread mrohad
can you show your sandbox.taglib.xml View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=3968613#3968613 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3968613 ___ jboss-user mailing

[jboss-user] [JBoss Seam] - ajax4jsf+seam redployment fails

2006-08-29 Thread mrohad
ok , now ajax4jsf and seam and facelets working for me side by side but when I redeploy?!?!?!yes redeploy I get this exception while surfing to my home.jsp :SEVERE: Error Rendering View[/home.jsp] | com.sun.facelets.tag.TagAttributeException: /WEB-INF/incl/store_nav.jsp @8,62 view=/home.jsp

[jboss-user] [JBoss Seam] - Re: EntityManager newibe Question

2006-08-28 Thread mrohad
what are the differences between container managed and seam managed? View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=3967987#3967987 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3967987

[jboss-user] [JBoss Seam] - seam + ajax4jsf + facelets

2006-08-26 Thread mrohad
I tried to install ajax4jsf in my face-config i've | !-- Facelets support -- | | application | view-handlercom.sun.facelets.FaceletViewHandler/view-handler | /application | | lifecycle |

[jboss-user] [JBoss Seam] - injecting TreeNode

2006-08-25 Thread mrohad
Hello , I'm using JSF TREE , my TreeNode arethe Category Entity Beans , howcan I inject a category while pressing on one of the tree leafs? Thanks View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=3967417#3967417 Reply to the post :

[jboss-user] [JBoss Seam] - EntityManager newibe Question

2006-08-25 Thread mrohad
I've a Pojo class , non a seam component how can I retrieve the EM from the context? I tried to use this line: | EntityManagerFactory emf = Persistence.createEntityManagerFactory(globalEM); | return emf.createEntityManager(); and it works , but it start validate my DB everytime I call it

[jboss-user] [JBoss Seam] - Re: EntityManager newibe Question

2006-08-25 Thread mrohad
I tried that , I am getting null :( it's not a session bean, just a pojo.. any other idea? View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=3967477#3967477 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3967477

[jboss-user] [JBoss Seam] - Re: EntityManager newibe Question

2006-08-25 Thread mrohad
here are how I define the EM: | @PersistenceContext(unitName=globalEM) | private transient EntityManager em; | here is xml | persistence |persistence-unit name=globalEM | providerorg.hibernate.ejb.HibernatePersistence/provider |

[jboss-user] [JBoss Seam] - Re: Merging objects problems.

2006-08-24 Thread mrohad
question regarding PersistenceContextType.EXTENDED is it possible to explictly deattach the Entities some how? I am selecting the entitybeans I want ,then showing them and their relationship entitybeans in a JSF table ,then I would like to store them in a cache and deattache them , is it

[jboss-user] [JBoss Seam] - Re: JSP insted XHTMLS (DVD store example)

2006-08-24 Thread mrohad
thanks but 1) the nwFile.jsp I am trying to view is just a simple JSP file why does it try to parse it? 2) why in some examples they used jsp(registreations,issues) and in some other(dvd) they used xhtml? what is better? View the original post :

[jboss-user] [JBoss Seam] - Tomahawk:tree2

2006-08-24 Thread mrohad
few question regarding tree2 and seam I am using tree2 as tree of Category(entity bean) 1) when clicking on one of the tree nodes I would like to inject to my SB a Category object (same as clicking on a row in DataMode tablel) how do I make that happen? 2)can change this tree direction(right

[jboss-user] [JBoss Seam] - Re: JSP insted XHTMLS (DVD store example)

2006-08-24 Thread mrohad
ok , thanks! do you know any jspx tutorial? how can I import Java class in xhtml file/jsf? View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=3967228#3967228 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3967228

[jboss-user] [JBoss Seam] - Re: Is it possible to connect JSF fields to a List of Entity

2006-08-18 Thread mrohad
great thanks , is it possible to add another new elmenet by clicking add button?(is it possible to do so without calling the server side) View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=3966007#3966007 Reply to the post :

[jboss-user] [JBoss Seam] - Re: Is it possible to connect JSF fields to a List of Entity

2006-08-18 Thread mrohad
thanks but how does this add button works? how do I make him add new line to my table that related to this new element? View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=3966012#3966012 Reply to the post :

[jboss-user] [JBoss Seam] - Re: Is it possible to connect JSF fields to a List of Entity

2006-08-18 Thread mrohad
isn't it possible to do that without calling the server? injavascript it's easy to create another rown in the table with input fields...but how do I relate those fields to the new element properties? View the original post :

[jboss-user] [JBoss Seam] - Re: @LoggedIn kills injection in beans

2006-08-18 Thread mrohad
same thing happen to me!any idea? View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=3966057#3966057 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3966057 ___ jboss-user mailing list

[jboss-user] [JBoss Eclipse IDE (users)] - Jboss IDE 2a1 on top WTP 1.5

2006-08-18 Thread mrohad
I've WTP 1.5 installed with JSF support i am downloading right now Jboss IDE 2aplhe1 (the 78mb file) how do I install it on top of the WTP? Thanks!! View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=3966095#3966095 Reply to the post :

[jboss-user] [JBoss Eclipse IDE (users)] - Re: Jboss IDE 2a1 on top WTP 1.5

2006-08-18 Thread mrohad
I tried just to copy the eclipseJboss IDE folder to the WTP eclipse folder and it's runing but I how do I run a Jboss server(4.0.4) from this IDE like I used to do from Jboss IDE 1/.5?!?!? View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=3966104#3966104 Reply to

[jboss-user] [JBoss Seam] - dynamic JSF - simple question

2006-08-17 Thread mrohad
is it possible to add JSF Input box dyanmicly? for example I've and I would like to add another on each click on OR I know how to do it with JavaScript , how do I do it with JSF? is it possible to use it with seam? to relate each new input to a getter/setter(via @In and @out) Thanks View

[jboss-user] [JBoss Seam] - dynamic JSF - second try

2006-08-17 Thread mrohad
is it possible to add JSF Input box dyanmicly? for example I've input box , button value=OR and I would like to add another input on each click on OR I know how to do it with JavaScript , how do I do it with JSF? is it possible to use it with seam? to relate each new input to a

[jboss-user] [JBoss Seam] - @out with on param

2006-08-17 Thread mrohad
I've User entity bean User (id , name , pass) I would like to set only the user name in a SFSB and to send it to the page what I did is | @In(required=false) | @Out(required=false) | User user; | | public String testSomething() | { | User= new

[jboss-user] [JBoss Seam] - Re: @out with on param

2006-08-17 Thread mrohad
I've @Name on my User entity actually it's a different more complex story so I just rewrite the code here any other idea but @Name? Thanks View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=3965845#3965845 Reply to the post :

[jboss-user] [JBoss Seam] - Re: specific @SelectItem Question -

2006-08-16 Thread mrohad
does anyone knows what to do here ? or has way to contact CptnKirk ? Thanks View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=3965470#3965470 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3965470

[jboss-user] [JBoss Seam] - Re: Peter Muir - @SelectItems

2006-08-16 Thread mrohad
2006-08-16 19:50:52,931 DEBUG [com.wannabet.login.LoginAction] cLang has 2 entries any other ide? btw , thank you very much helping here , i am trying to use this selectItem for long time now View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=3965526#3965526

[jboss-user] [JBoss Seam] - Re: Peter Muir - @SelectItems

2006-08-16 Thread mrohad
just before sending you my source files here is 2 rows from server.log that comes before the row I showed you before: | 2006-08-16 19:50:52,951 DEBUG [org.jboss.seam.Component] seam component not found: cLang | 2006-08-16 19:50:52,951 DEBUG [org.jboss.seam.jsf.SeamVariableResolver] could

[jboss-user] [JBoss Seam] - Re: specific @SelectItem Question -

2006-08-15 Thread mrohad
ok , my mistake , it does call the @factory method. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=3965186#3965186 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3965186 ___

[jboss-user] [JBoss Seam] - Re: @PersistenceContext(type=PersistenceContextType.EXTENDED

2006-08-15 Thread mrohad
Thanks! stateful is per client right? for each client the factory method will get invoke , right? View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=3965311#3965311 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3965311

[jboss-user] [JBoss Seam] - Re: specific @SelectItem Question -

2006-08-14 Thread mrohad
anyone?! any start point? View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=3965000#3965000 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3965000 ___ jboss-user mailing list

  1   2   >