Hi,

I'm playing with click&gae and noticed a small problem/question:

If i have 'com.google.appengine.api.datastore.Text' type field, the
function 'form.copyTo' doesn't copy its value to entity.

Nonetheless a can set it with:

// copy other fields
form.copyTo(myEntry);
// copy Text   value
Text cnt = new Text(form.getFieldValue("content"));
myEntry.setContent(cnt);


Is there any better solution forthat type of field? How to force click
to use only  copyTo function?


Best regards,

Tomasz

Reply via email to