Merge branch 'ent-12501-varios-errores-en-los-campos-personalizados-por-consola-web' into 'develop'

Ent 12501 varios errores en los campos personalizados por consola web

See merge request artica/pandorafms!6723
This commit is contained in:
Rafael Ameijeiras 2024-01-19 08:18:53 +00:00
commit e4c30eaeb6
3 changed files with 10 additions and 9 deletions

View File

@ -1130,17 +1130,12 @@ foreach ($fields as $field) {
}
if ((bool) $field['is_password_type'] === true) {
$customContent = html_print_input_text_extended(
$customContent = html_print_input_password(
'customvalue_'.$field['id_field'],
$custom_value,
'customvalue_'.$field['id_field'],
'',
30,
100,
$view_mode,
'',
'',
true,
45,
255,
true
);
} else if ($field['is_link_enabled']) {

View File

@ -275,21 +275,27 @@ $(document).ready (function () {
$('#configure_field-3').show();
dialog_message("#message_no_set_password");
$('#configure_field-1').hide();
$('#configure_field-2-0').hide();
}
else{
$('#configure_field-3').hide();
$('#configure_field-1').show();
$('#configure_field-2-0').show();
}
});
$('input[type=checkbox][name=is_password_type]').change(function () {
if( $('input[type=checkbox][name=is_password_type]').prop('checked')){
$('#configure_field-1').hide();
dialog_message("#message_no_set_combo");
$('#configure_field-3').hide();
$('#configure_field-2-1').hide();
}
else{
if($('input[type=checkbox][name=is_combo_enable]').prop('checked') === true) {
$('#configure_field-3').show();
}
$('#configure_field-1').show();
$('#configure_field-2-1').show();
}
});
});

View File

@ -11852,7 +11852,7 @@ p.trademark-copyright {
}
.show-hide-pass {
position: fixed;
position: absolute;
border: 0;
outline: none;
margin-left: -50px;