Merge branch '3057-Agregar-token-barras-desplazamiento-en-vista-datos-de-modulo' into 'develop'
Fixed overflow in module data view See merge request artica/pandorafms!1967 Former-commit-id: bfcf0c9c08953e1fa49e8731db808bc78ecc826b
This commit is contained in:
commit
33f014695d
|
@ -2518,7 +2518,7 @@ function html_print_result_div ($text) {
|
|||
$text = preg_replace ('/\n/i','<br>',$text);
|
||||
$text = preg_replace ('/\s/i',' ',$text);
|
||||
|
||||
$enclose = "<div id='result_div' style='width: 100%; height: 100%; overflow: scroll; padding: 10px; font-size: 14px; line-height: 16px; font-family: mono,monospace; text-align: left'>";
|
||||
$enclose = "<div id='result_div' style='width: 100%; height: 100%; overflow: auto; padding: 10px; font-size: 14px; line-height: 16px; font-family: mono,monospace; text-align: left'>";
|
||||
$enclose .= $text;
|
||||
$enclose .= "</div>";
|
||||
return $enclose;
|
||||
|
|
|
@ -3884,7 +3884,7 @@ function ui_print_module_string_value($value, $id_agente_module,
|
|||
" / " . $module_name;
|
||||
$salida = "<div " .
|
||||
"id='hidden_value_module_" . $id_agente_module . "'
|
||||
style='display: none; width: 100%; height: 100%; overflow: scroll; padding: 10px; font-size: 14px; line-height: 16px; font-family: mono,monospace; text-align: left' title='" . $title_dialog . "'>" .
|
||||
style='display: none; width: 100%; height: 100%; overflow: auto; padding: 10px; font-size: 14px; line-height: 16px; font-family: mono,monospace; text-align: left' title='" . $title_dialog . "'>" .
|
||||
$value .
|
||||
"</div>" .
|
||||
"<span " .
|
||||
|
|
Loading…
Reference in New Issue