From: Moritz Bunkus Date: Mon, 5 Mar 2007 13:48:23 +0000 (+0000) Subject: Steuerschlüssel-Drop-Down braucht für das JavaScript eine ID. X-Git-Tag: release-2.4.3^2~633 X-Git-Url: http://wagnertech.de/git?a=commitdiff_plain;h=eb173d13dbd63cd2fdbeae93edf8dcb61900e0c9;p=kivitendo-erp.git Steuerschlüssel-Drop-Down braucht für das JavaScript eine ID. --- diff --git a/bin/mozilla/gl.pl b/bin/mozilla/gl.pl index 5154a3fcf..d0616ab1a 100644 --- a/bin/mozilla/gl.pl +++ b/bin/mozilla/gl.pl @@ -1115,6 +1115,7 @@ sub display_rows { $accno = qq|| . $cgi->popup_menu('-name' => "accno_$i", + '-id' => "accno_$i", '-onChange' => "setTaxkey(this, $i)", '-style' => 'width:200px', '-tabindex' => ($i + 5 + (($i - 1) * 8)), @@ -1124,6 +1125,7 @@ sub display_rows { . qq||; $tax = qq|| . $cgi->popup_menu('-name' => "taxchart_$i", + '-id' => "taxchart_$i", '-style' => 'width:200px', '-tabindex' => ($i + 10 + (($i - 1) * 8)), '-values' => \@taxchart_values,