Generic way to acess a entityProxy properties

2016-03-04 Thread Fernando Castro
Good night. As i have a dozen entities in my system, and pretty much the same layout for their display, i'm trying to create a generic panel, wich could receive any entityProxy and a set of parameters, those parameters would be the path of the attribute i'm trying to display. My ideas was to,

Re: Firing Custom Event in GWT

2014-08-24 Thread Fernando Castro
If you are firing a event when there is a change event or a blur event. i don't think you will have a performance issue, however, if you are listening to the key pressed event, so maybe you application will be a bit slower. Em quarta-feira, 23 de julho de 2014 02h36min27s UTC-3, Mohammed

Re: OnClick event fired more than one time for one click

2014-08-24 Thread Fernando Castro
In my practice i have seen this behavior a few times and i can say that, this double click is a matter of several factors, OS, browser version, the mouse the user have. But i had a few times the following problem. i had a flow where i added a click handler to my widget, however this flow was

How to trigger a click in a Frame

2014-08-24 Thread Fernando Castro
I have a third party application that i want to embedded in my GWT app, however, this application is a swf, with a menu for some intro animation. I want to trigger a click the menu when the swf load to open the part that i need. Does someone have a idea? -- You received this message because

Re: change in children not saved in GWT 2.5.1 after implement OSIV

2013-06-04 Thread Fernando Castro
The only work around that i have found is to persist the entity child in a diferent request. In my case i have a ParentEntity with a SetChildEntity. When persisting a new set, it work just fine, but when i try to update the values, the modifications never reach the server. I tried to create a

Re: change in children not saved in GWT 2.5.1 after implement OSIV

2013-06-01 Thread Fernando Castro
Same problem, Still haven't found any good solution, Em sexta-feira, 31 de maio de 2013 11h50min21s UTC-3, Yan escreveu: Hi there, I have a Parent object containing a list of Children objects. Both are EntityProxy. My RequestFactory API is to persist the Parent along with Children