4 Aug
2003
4 Aug
'03
7:17 a.m.
OdesÃlatel: Michael Bleijerveld <michael@bleijerveld.nl> When I use this statement I get the following error.
Error Type: AttributeError Error Value: set Greetings,Michael----- Original Message ----- From: "Chris Withers" <chrisw@nipltd.com>
Here are the statements which generates an error.
<dtml-if next-sequence> <dtml-call "REQUEST.set('query_start',<dtml-var next-sequence-start-number>)">
Okay, you can't do this!
you want:
<dtml-call "REQUEST.set('query_start',_.getitem('next-sequence-start-number'))">
Hi, try that: <dtml-call "REQUEST.set('query_start',_['next-sequence-start-number'])"> Regards, JL.