Fix Bug chrome : cannot save operation details
This commit is contained in:
parent
14304f9830
commit
c18d75719b
6 changed files with 27 additions and 17 deletions
|
|
@ -23,7 +23,7 @@ $dossier_id=Dossier::id();
|
|||
?>
|
||||
|
||||
<?php if ($access == 'W') : ?>
|
||||
<form class="print" onsubmit="return op_save(this);">
|
||||
<form class="print" id="<?=$div?>_frm" onsubmit="return op_save('<?=$div?>_frm');">
|
||||
<?php endif; ?>
|
||||
|
||||
<?php echo HtmlInput::hidden('whatdiv', $div) . HtmlInput::hidden('jr_id', $jr_id) . dossier::hidden(); ?>
|
||||
|
|
|
|||
|
|
@ -18,7 +18,7 @@ $dossier_id=Dossier::id();
|
|||
|
||||
?>
|
||||
<?php if ( $access=='W') : ?>
|
||||
<form class="print" onsubmit="return op_save(this);">
|
||||
<form class="print" id="<?=$div?>_frm" onsubmit="return op_save('<?=$div?>_frm');">
|
||||
<?php endif; ?>
|
||||
|
||||
<?php echo HtmlInput::hidden('whatdiv',$div).HtmlInput::hidden('jr_id',$jr_id).dossier::hidden();?>
|
||||
|
|
|
|||
|
|
@ -22,7 +22,7 @@ $dossier_id=Dossier::id();
|
|||
<div class="content">
|
||||
|
||||
<?php if ( $access=='W') : ?>
|
||||
<form class="print" onsubmit="return op_save(this);">
|
||||
<form class="print" id="<?=$div?>_frm" onsubmit="return op_save('<?=$div?>_frm');">
|
||||
<?php endif; ?>
|
||||
|
||||
<?php echo HtmlInput::hidden('whatdiv',$div).HtmlInput::hidden('jr_id',$jr_id).dossier::hidden();?>
|
||||
|
|
|
|||
|
|
@ -25,9 +25,9 @@ $str_anc = "";
|
|||
$owner = new Noalyss_Parameter_Folder($cn);
|
||||
?>
|
||||
|
||||
<?php if ($access == 'W') :
|
||||
echo '<form class="print" onsubmit="return op_save(this);">';
|
||||
endif; ?>
|
||||
<?php if ($access == 'W') :?>
|
||||
<form class="print" id="<?=$div?>_frm" onsubmit="return op_save('<?=$div?>_frm');">
|
||||
<?php endif; ?>
|
||||
|
||||
<?php echo HtmlInput::hidden('whatdiv', $div) . HtmlInput::hidden('jr_id', $jr_id) . dossier::hidden(); ?>
|
||||
<table style="width:100%">
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue