[Zope] <StringField instance at 018FEFA0>
Dieter Maurer
dieter@handshake.de
Tue, 6 Aug 2002 21:14:15 +0200
3205 5361 1215 9784 writes:
> ...
> and it renders this in the input field:
>
> "<StringField instance at 018FEFA0>"
>
> whats this? how can i get the value of my variable?
You do:
Your variable is bound to a "StringField" object.
And its value (when converted to a string) is
"<StringField instance at 018FEFA0>".
To render it more appropriately, you must call a type specific
method, usually it's "__call__" (i.e. you call the object),
but it may also be a method like "getValue".
Read the Formulator API to find out more.
Dieter