in reply to Re: CGI.pm input vs textfield
in thread CGI.pm input vs textfield

If you want to turn off sticky forms on all fields (as setting force => 1 for each field can get irritating if your form is large), you can do it in the use statement

use CGI qw(-no_xhtml :standard *table *Tr -nosticky);

Replies are listed 'Best First'.
Re^3: CGI.pm input vs textfield
by avik (Novice) on Jun 24, 2004 at 19:17 UTC
    Tried -nosticky it makes no difference. Now force => 1 does make it work "as expected". To me, force => 1 needs to be a default behaviour. Thanks for your good advice.