Unable to determine key for 'mousedown' event. Returning null

2013-07-09 Thread Sahli Sabrina
hi , i have a gwt application and i use smartgwt for the gui. today, i'm getting this error i dont inderstand why, 00:02:39,873 [ERROR] 10:46:12.440:MDN2:WARN:Log:EventHandler.determineEventKeyName(): Unable to determine key for 'mousedown' event. Returning null

Re: Unable to determine key for 'mousedown' event. Returning null

2013-07-09 Thread Sahli Sabrina
It was a problem in Google web toolkit developper plug , i deleted it and install it again and the application works now Thanks Le mardi 9 juillet 2013 11:01:16 UTC, Sahli Sabrina a écrit : hi , i have a gwt application and i use smartgwt for the gui. today, i'm getting this error i dont

[LazyInitializationException] failed to lazily initialize a collection of role

2013-06-11 Thread Sahli Sabrina
Hi everyOne, when i try to get a list of object in Societe class i'm getting this exception LazyInitializationException] failed to lazily initialize a collection of role: com.protid.prosa.shared.model.bo.Commune.soumission, no session or session was closed [INFO]

Re: [LazyInitializationException] failed to lazily initialize a collection of role

2013-06-11 Thread Sahli Sabrina
Le mardi 11 juin 2013 13:26:45 UTC, Sahli Sabrina a écrit : Hi everyOne, when i try to get a list of object in Societe class i'm getting this exception LazyInitializationException] failed to lazily initialize a collection of role

Re: [LazyInitializationException] failed to lazily initialize a collection of role

2013-06-11 Thread Sahli Sabrina
/google-web-toolkit/fkbowz5-5do. I've implemented a filter that you can use to put null lazy relationships. The problem is very common in Hibernate, check in google. It happens when you serialize the object with GWT-RPC. 2013/6/11 Sahli Sabrina sahli@gmail.com javascript: Hi everyOne

Re: [LazyInitializationException] failed to lazily initialize a collection of role

2013-06-11 Thread Sahli Sabrina
/8aba86d82778cb3a6f48f4d5f60f21d4134282b4/src/main/java/com/foo/server/rpc/hibernate/HibernateFilter.java?at=default 2013/6/11 Sahli Sabrina sahli@gmail.com javascript: i did'nt find the filter in your code . can you explain me please how did you do? thank you Le mardi 11 juin 2013 13:31:05 UTC

Re: [LazyInitializationException] failed to lazily initialize a collection of role

2013-06-11 Thread Sahli Sabrina
and the implementation. And you can see alternatives here: https://developers.google.com/web-toolkit/articles/using_gwt_with_hibernatehttps://developers.google.com/web-toolkit/articles/using_gwt_with_hibernate?hl=es-ES I prefer DTO + Dozzer. Juan 2013/6/11 Sahli Sabrina sahli

Acitivities and places:problem in using eventBus

2013-06-07 Thread Sahli Sabrina
Hi everyBody, I want to transfer an object from an activity to another one, for that i used the event bus: 1. i created an event AddSoumissionEvent and handler AddSoumissionHandler 2.intialise the eventbus of the first activity with the eventBus offered in the start Function public

Re: Acitivities and places:problem in using eventBus

2013-06-07 Thread Sahli Sabrina
juin 2013 13:21:27 UTC+2, Thomas Broyer a écrit : Can you show the code of the AddSoumissionEvent? On Friday, June 7, 2013 1:10:17 PM UTC+2, Sahli Sabrina wrote: Hi everyBody, I want to transfer an object from an activity to another one, for that i used the event bus: 1. i created

Re: Acitivities and places:problem in using eventBus

2013-06-07 Thread Sahli Sabrina
ok thank you a lot for the reply :) -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To unsubscribe from this group and stop receiving emails from it, send an email to google-web-toolkit+unsubscr...@googlegroups.com. To post to this

Re: Acitivities and places:problem in using eventBus

2013-06-07 Thread Sahli Sabrina
the second Activity had the chance to start (hence register a handler).. Another possibility would be different 'instances' of EventBus objects, which is hardly the case as the bus was offered from PlaceHistoryHandler. HTH. On Fri, Jun 7, 2013 at 2:57 PM, Sahli Sabrina sahli

Re: gwt maven project ,update problem

2013-05-07 Thread sahli . sabrina
I just resolved the problem , it seem like files were generated in src\main\webapp\WEB-INF\classes folder so i deleted them and the project works fine now. Thank you Le lundi 6 mai 2013 09:32:54 UTC+1, sahli@gmail.com a écrit : hi, I have a gwt maven project, the problem is that the

gwt maven project ,update problem

2013-05-06 Thread sahli . sabrina
hi, I have a gwt maven project, the problem is that the changes I make on the application are not taken into account when running in jetty, how can i do to resolve the problem? please help me , thank you a lot, -- You received this message because you are subscribed to the Google Groups

Re: gwt maven project ,update problem

2013-05-06 Thread sahli . sabrina
thank you for the reply, but i created the project using gwt-maven-archetypes :( . and i keep cleaning the project but i have the same problem Le lundi 6 mai 2013 09:39:38 UTC+1, deepak chauhan a écrit : Tryto create the project using https://github.com/tbroyer/gwt-maven-archetypes. I

Re: gwt maven project ,update problem

2013-05-06 Thread sahli . sabrina
I made the changes in java files (src/main/java ). And i run the application in devMode by using eclipse and i put the gwt:run command After cleaning and re -runing the project i find that the java files generated are the old files (without change) and the samre execution results Thank you,

Re: Problem with the function editRecord in a DynamicForm (SmartGwt)

2013-03-29 Thread sahli . sabrina
Thank you so much for the reply, I works fine in the showcase but the problem is a don't use XML for managing data so i think that the problem is in type of formItem used for displaying Date in the DynamicForm. I used a FormItem and DateItem but i still had this problem but now i'm using

Problem with the function editRecord in a DynamicForm (SmartGwt)

2013-03-25 Thread sahli . sabrina
i have in the GUI, a ListGrid and a DynamicForm. When i click on an element in the listGrid, i have to display the values of the edited record on the Dynamic form, for this, i use the EditRecord(Record r) of the dynamicForm public void updateInstanceDetailTabPane(Record record){

Re: How to change the locale at runtime

2013-03-20 Thread sahli . sabrina
Le lundi 18 mars 2013 09:53:31 UTC+1, sahli@gmail.com a écrit : Hi, i'm beginner in gwt, how can i change the locale language at runtime like the http://gwt.googleusercontent.com/samples/Showcase/Showcase.html#!CwCheckBox, thank you, -- You received this message because you are

Re: How to change the locale at runtime

2013-03-20 Thread sahli . sabrina
thank you for the reply, this is what i did and it works now :) Le lundi 18 mars 2013 09:53:31 UTC+1, sahli@gmail.com a écrit : Hi, i'm beginner in gwt, how can i change the locale language at runtime like the http://gwt.googleusercontent.com/samples/Showcase/Showcase.html#!CwCheckBox,

How to change the locale at runtime

2013-03-19 Thread sahli . sabrina
Hi, i'm beginner in gwt, how can i change the locale language at runtime like the http://gwt.googleusercontent.com/samples/Showcase/Showcase.html#!CwCheckBox, thank you, -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To unsubscribe

Problem installign gwt in eclipse

2012-06-07 Thread sahli sabrina
hi, i have eclipse version 3.5 and i want to set up gwt but i have always this error message T he operation cannot be completed. See the details. details Cannot complete the install because one or more required items could not be found. Software being installed: Google Plugin for Eclipse 3.5