Hi, I have this:
tuple1 = []
for k in data.domain.attributes:
tuple1.append(k.name)
form = FORM(TR(SELECT(_name='search_category_1',
*[OPTION(tuple1[i], _value=i) for i in range(len(tuple1))]),
value=request.vars.search_category_1),
TR("",INPUT(_type="text",_name="upper_limit_1",
value="0"),INPUT(_type="submit",_value="Pozeni!")), _method='GET')but the value of the dropdown does't keep the value of 'search_category_1'? Do you have any ideas? Thanx --

