Merge branch 'ent-5575-wizard-de-modulos-y-recon-by-steps' of brutus.artica.es:artica/pandorafms into ent-5575-wizard-de-modulos-y-recon-by-steps

This commit is contained in:
fbsanchez 2020-04-13 17:16:52 +02:00
commit 3dbbd91d6d
2 changed files with 12 additions and 2 deletions

View File

@ -1336,6 +1336,7 @@ function html_print_input_text_extended(
'onkeyup',
'required',
'autocomplete',
'form',
];
$output = '<input '.($password ? 'type="password" autocomplete="'.$autocomplete.'" ' : 'type="text" ');
@ -1553,7 +1554,8 @@ function html_print_input_text(
$onChange='',
$autocomplete='',
$autofocus=false,
$onKeyDown=''
$onKeyDown='',
$formTo=''
) {
if ($maxlength == 0) {
$maxlength = 255;
@ -1590,6 +1592,10 @@ function html_print_input_text(
$attr['autofocus'] = $autofocus;
}
if ($formTo != '') {
$attr['form'] = $formTo;
}
return html_print_input_text_extended(
$name,
$value,
@ -3462,7 +3468,8 @@ function html_print_input($data, $wrapper='div', $input_only=false)
((isset($data['onChange']) === true) ? $data['onChange'] : ''),
((isset($data['autocomplete']) === true) ? $data['autocomplete'] : ''),
false,
((isset($data['onKeyDown']) === true) ? $data['onKeyDown'] : '')
((isset($data['onKeyDown']) === true) ? $data['onKeyDown'] : ''),
((isset($data['form']) === true) ? $data['form'] : '')
);
break;

View File

@ -628,6 +628,9 @@ select:-internal-list-box {
.float-right {
float: right;
}
.invisible {
display: none;
}
div#page {
background: #fbfbfb;