Hi,

I am having trouble creating a list. I can create a list using the following:

<dtml-in expr="_.range(cs_size)">
<input type="text" name="pbr1_temp" size="6">
</dtml-in>

I see the information using the following:

<dtml-in expr="_.range(cs_size)">
<dtml-call "REQUEST.set('pbr1', pbr1_temp[cell_stack_counter])">
</dtml-in>

Now I need to load the list to check items. I thought I could do the following:

<dtml-in lookup_all_history_record >
<dtml-call "REQUEST.set('creation_date_inspect_temp', creation_date_inspect)">
</dtml-in>

But if I try to display the creation_date_inspect_temp[sn_counter] I have a Keyerror object unknown.

Any pointers or suggestions would be a big help. Thanks.

Larry