Re: GWT RPC + JDO - persisted object loses its id when sending from server back to client.

2010-01-07 Thread Kah0ona
Oh yes, ofcourse Employee extends Person... On Jan 7, 5:31 pm, Kah0ona wrote: > I have a problem with the following things: > > @PersistenceCapable(detachable = "false", identityType = > IdentityType.APPLICATION) > @Inheritance(strategy = InheritanceStrategy.SUBCLASS

GWT RPC + JDO - persisted object loses its id when sending from server back to client.

2010-01-07 Thread Kah0ona
I have a problem with the following things: @PersistenceCapable(detachable = "false", identityType = IdentityType.APPLICATION) @Inheritance(strategy = InheritanceStrategy.SUBCLASS_TABLE) public abstract class Person { @PrimaryKey @Persistent(valueStrategy = IdGeneratorStrategy.IDE

Re: Strange crash of Hosted Browser when adding ClickHandler to button...

2009-12-04 Thread Kah0ona
I forgot to mention: GWT 1.7.1 On Dec 4, 12:10 pm, Kah0ona wrote: > Hi, > > [System details: Mac OS X Snow Leopard 1.6.2, eclipse gallilleo] > > I am having a strange problem in a little project of mine. I am > building (generating actually) a system that allows basic CRUD &g

Strange crash of Hosted Browser when adding ClickHandler to button...

2009-12-04 Thread Kah0ona
Hi, [System details: Mac OS X Snow Leopard 1.6.2, eclipse gallilleo] I am having a strange problem in a little project of mine. I am building (generating actually) a system that allows basic CRUD operations on data, and I am using a simple MVC pattern. For every data entity I have a MVC triple.

Changing the CSS of a div programmatically

2009-08-11 Thread Kah0ona
Hello, For my first GWT app I want to change the position of a div (HTMLPanel in my case) at run-time (e.g. after pressing a button). To do that i would like to do something like : - set the position to relative - set the top property of the div - set the left property. Any idea how? Or any di