Buenos días, al final resultó ser el css de los botones, algo raro, estoy investigando, en cuanto tenga algo más de información lo comento.
Personalicé la plantilla y hace eso, cuando pongo las plantillas predeterminadas funciona correctamente.
Este es el código que me falla, esta en el _lib/buttons/(el tema)LTR.php
$this->arr_buttons[‘bcalendario’][‘hint’] = $Nm_lang[‘lang_btns_cldr_hint’];
$this->arr_buttons[‘bcalendario’][‘type’] = ‘image’;
$this->arr_buttons[‘bcalendario’][‘value’] = $Nm_lang[‘lang_btns_cldr’];
$this->arr_buttons[‘bcalendario’][‘display’] = ‘only_fontawesomeicon’;
$this->arr_buttons[‘bcalendario’][‘display_position’] = ‘text_right’;
$this->arr_buttons[‘bcalendario’][‘fontawesomeicon’] = ‘fas fa-calendar-alt’;
$this->arr_buttons[‘bcalendario’][‘style’] = ‘fontawesome’;
$this->arr_buttons[‘bcalendario’][‘image’] = ‘scriptcase__NM__nm_scriptcase9_Rhino_date.png’;
Pero cuando cambio a mano a estos valores, me funciona correctamente.
$this->arr_buttons[‘bcalendario’][‘hint’] = $Nm_lang[‘lang_btns_cldr_hint’];
$this->arr_buttons[‘bcalendario’][‘type’] = ‘image’;
$this->arr_buttons[‘bcalendario’][‘value’] = $Nm_lang[‘lang_btns_cldr’];
$this->arr_buttons[‘bcalendario’][‘display’] = ‘only_img’;
$this->arr_buttons[‘bcalendario’][‘display_position’] = ‘text_right’;
$this->arr_buttons[‘bcalendario’][‘fontawesomeicon’] = ‘’;
$this->arr_buttons[‘bcalendario’][‘style’] = ‘disabledSCImage’;
$this->arr_buttons[‘bcalendario’][‘image’] = ‘scriptcase__NM__nm_scriptcase9_Rhino_date.png’;
Gracias por tu interés.