Gossamer Forum
Home : Products : DBMan SQL : Discussion :

generate_select within modify_search_results

Quote Reply
generate_select within modify_search_results
Greetings!

When I use the generate_select subroutine within modify_search_results.html the selected value is not displayed (within a modify_form.html template everything is ok). It seems that the selected value is not defined in this context (i.e. modify_search_results) when it is assigned with

my $selected = $tags->{values}->{$col};

in line #381 of DBSQL::HTML.pm. When I change this line #381 of DBSQL::HTML.pm to

my $selected = $tags->{$col};

everything works as expected.

But to say the truth: I do not what the side effects of this mod are Blush...

Any help/advice would be very much appreciated!

Armin