Merged revisions 5577-5581 via svnmerge from

svn+ssh://danydb@ns352270.ovh.net/svn/phpcompta/tags/rel670

........
  r5577 | danydb | 2013-12-06 17:19:32 +0100 (ven., 06 déc. 2013) | 3 lines
  
  bug #931 - Parfois on ne peut pas ajouter le favori
  Ajout vue v_menu_description_favori
  Task #931 - Parfois on ne peut pas ajouter le favori
........
  r5578 | danydb | 2013-12-06 17:30:55 +0100 (ven., 06 déc. 2013) | 4 lines
  
  bug #928 - Fenêtre Journaux dans fenêtre recherche est clippé 
  
  ajout d'un bouton "Fermer"
  Task #928 - Fenêtre Journaux dans fenêtre recherche est clippé
........
  r5579 | danydb | 2013-12-07 20:16:46 +0100 (sam., 07 déc. 2013) | 4 lines
  
  bug #928 - Fenêtre Journaux dans fenêtre recherche est clippé 
  
  Cosmétique
  Task #928 - Fenêtre Journaux dans fenêtre recherche est clippé
........
  r5580 | danydb | 2013-12-07 21:27:36 +0100 (sam., 07 déc. 2013) | 1 line
  
  Cosmétique
........
  r5581 | danydb | 2013-12-07 23:07:15 +0100 (sam., 07 déc. 2013) | 1 line
  
  Fix some cosmetic bug, works with IE11
........
This commit is contained in:
Dany De Bontridder 2013-12-08 11:10:44 +00:00
parent 1c69f7cf75
commit cc26e7f396
8 changed files with 37 additions and 7 deletions

View file

@ -318,6 +318,7 @@ class HtmlInput
/* create a hidden div for the ledger */
echo '<div id="div_jrn'.$div.'" >';
echo HtmlInput::title_box("Journaux", $div."jrn_search");
echo '<div style="padding:5px">';
echo '<form method="GET" id="'.$div.'search_frm" onsubmit="return hide_ledger_choice(\''.$div.'search_frm\')">';
echo HtmlInput::hidden('nb_jrn', count($p_array));
echo _('Filtre ').HtmlInput::filter_table($div.'tb_jrn', '0,1,2', 1);
@ -339,7 +340,7 @@ class HtmlInput
}
$class=($e%2==0)?' class="even" ':' class="odd" ';
echo '<tr '.$class.'>';
echo '<td >'.$r->input().$row['jrn_def_name'].'</td>';
echo '<td style="white-space: nowrap">'.$r->input().$row['jrn_def_name'].'</td>';
echo '<td >'.$row['jrn_def_description'].'</td>';
echo '<td >'.$row['jrn_def_type'].'</td>';
echo '</tr>';
@ -348,8 +349,10 @@ class HtmlInput
echo '</table>';
echo HtmlInput::hidden('div',$div);
echo HtmlInput::submit('save','Valider');
echo HtmlInput::button_close($div."jrn_search");
echo '</form>';
echo '</div>';
echo '</div>';
$ret=ob_get_contents();
ob_end_clean();
return $ret;