Forum OpenACS Development: Re: Res: Re: Res: Re: ad_form newbee Question

Error in include template "/var/www/openacs/packages/openacs-bootstrap3-theme/resources/templates/packages/forums/lib/search/search-form": can't read "form:id": no such variable
Collapse
Posted by Cesareo Garci­a Rodicio on
Finally it was a very silly error :-) I did read a lot of documentation, problem was with select options.

This field has to be a list of dooble list, for example:

set priority_options { "1" "2" "2" } is bad but ...
set priority_options { {"1" "1"} {"2" "2"} {"3" "3"} } is good.

So, I had to put label AND value. Now, it works.