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:
commit
e4c30eaeb6
|
@ -1130,17 +1130,12 @@ foreach ($fields as $field) {
|
||||||
}
|
}
|
||||||
|
|
||||||
if ((bool) $field['is_password_type'] === true) {
|
if ((bool) $field['is_password_type'] === true) {
|
||||||
$customContent = html_print_input_text_extended(
|
$customContent = html_print_input_password(
|
||||||
'customvalue_'.$field['id_field'],
|
'customvalue_'.$field['id_field'],
|
||||||
$custom_value,
|
$custom_value,
|
||||||
'customvalue_'.$field['id_field'],
|
|
||||||
'',
|
'',
|
||||||
30,
|
45,
|
||||||
100,
|
255,
|
||||||
$view_mode,
|
|
||||||
'',
|
|
||||||
'',
|
|
||||||
true,
|
|
||||||
true
|
true
|
||||||
);
|
);
|
||||||
} else if ($field['is_link_enabled']) {
|
} else if ($field['is_link_enabled']) {
|
||||||
|
|
|
@ -275,21 +275,27 @@ $(document).ready (function () {
|
||||||
$('#configure_field-3').show();
|
$('#configure_field-3').show();
|
||||||
dialog_message("#message_no_set_password");
|
dialog_message("#message_no_set_password");
|
||||||
$('#configure_field-1').hide();
|
$('#configure_field-1').hide();
|
||||||
|
$('#configure_field-2-0').hide();
|
||||||
}
|
}
|
||||||
else{
|
else{
|
||||||
$('#configure_field-3').hide();
|
$('#configure_field-3').hide();
|
||||||
$('#configure_field-1').show();
|
$('#configure_field-1').show();
|
||||||
|
$('#configure_field-2-0').show();
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
$('input[type=checkbox][name=is_password_type]').change(function () {
|
$('input[type=checkbox][name=is_password_type]').change(function () {
|
||||||
if( $('input[type=checkbox][name=is_password_type]').prop('checked')){
|
if( $('input[type=checkbox][name=is_password_type]').prop('checked')){
|
||||||
|
$('#configure_field-1').hide();
|
||||||
dialog_message("#message_no_set_combo");
|
dialog_message("#message_no_set_combo");
|
||||||
$('#configure_field-3').hide();
|
$('#configure_field-3').hide();
|
||||||
|
$('#configure_field-2-1').hide();
|
||||||
}
|
}
|
||||||
else{
|
else{
|
||||||
if($('input[type=checkbox][name=is_combo_enable]').prop('checked') === true) {
|
if($('input[type=checkbox][name=is_combo_enable]').prop('checked') === true) {
|
||||||
$('#configure_field-3').show();
|
$('#configure_field-3').show();
|
||||||
}
|
}
|
||||||
|
$('#configure_field-1').show();
|
||||||
|
$('#configure_field-2-1').show();
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
|
@ -11852,7 +11852,7 @@ p.trademark-copyright {
|
||||||
}
|
}
|
||||||
|
|
||||||
.show-hide-pass {
|
.show-hide-pass {
|
||||||
position: fixed;
|
position: absolute;
|
||||||
border: 0;
|
border: 0;
|
||||||
outline: none;
|
outline: none;
|
||||||
margin-left: -50px;
|
margin-left: -50px;
|
||||||
|
|
Loading…
Reference in New Issue