% unless ( $opt{'js_only'} ) {
>
First name
>
Last name
>
Title/Position
>
Comment
% } <%init> my( %opt ) = @_; my $name = $opt{'element_name'} || $opt{'field'} || 'contactnum'; my $id = $opt{'id'} || 'contactnum'; my $curr_value = $opt{'curr_value'} || $opt{'value'}; my $onchange = ''; if ( $opt{'onchange'} ) { $onchange = $opt{'onchange'}; $onchange .= '(this)' unless $onchange =~ /\(\w*\);?$/; $onchange =~ s/\(what\);/\(this\);/g; #ugh, terrible hack. all onchange #callbacks should act the same $onchange = 'onChange="'. $onchange. '"'; } my $contact; if ( $curr_value ) { $contact = qsearchs('contact', { 'contactnum' => $curr_value } ); } else { $contact = new FS::contact {}; }