[Zope] Dynamic Folders in <dtml-in>
Dieter Fischer
dieter.fischer@grid-it.ch
Wed, 21 May 2003 19:15:40 +0200
> Try using
>
> _.getitem('your assembled id name')
>
I've already tried this, this leads to:
Error Type: InError
Error Value: Strings are not allowed as input to the in tag.
Means, the <dtml-in> doesn't accept strings
Alexis Roda also pointed me out, that it shouldn't be:
<dtml-set query_string="'sql.'+getDatabase()+'.browse()'">
it should be
<dtml-set query_string="'sql.'+getDatabase()+'.browse'">
But there's no difference.
Dieter