dmencu 0.8.17 → 0.8.18
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -963,7 +963,9 @@ var botonFormularioConResumen = (
|
|
|
963
963
|
casillero.aclaracion?
|
|
964
964
|
html.td({class:"aclaracion"}, [breakeableText(casillero.aclaracion)])
|
|
965
965
|
:null,
|
|
966
|
-
html.td(
|
|
966
|
+
html.td({colspan:(defBoton.esAgregar || defBoton.esConfirmar)?
|
|
967
|
+
(casillero.especial?.camposResumen.length??1)+(casillero.aclaracion?0:1)
|
|
968
|
+
:null},[
|
|
967
969
|
Button2({
|
|
968
970
|
// id:`var-${idVariable}`,
|
|
969
971
|
id:`boton-formulario-${sufijoIdElemento}`,
|
|
@@ -1008,7 +1010,7 @@ var botonFormularioConResumen = (
|
|
|
1008
1010
|
:null)
|
|
1009
1011
|
]),
|
|
1010
1012
|
(defBoton.num !== false && !defBoton.esAgregar && !defBoton.esConfirmar?
|
|
1011
|
-
(casillero.especial?.camposResumen??[defBoton.num.toString()]).map(
|
|
1013
|
+
(casillero.especial?.camposResumen??[/*defBoton.num.toString()*/]).map(
|
|
1012
1014
|
(campo:string)=>html.td(respuestasAumentadas[formularioAAbrir.unidad_analisis][defBoton.num-1][campo as IdVariable])
|
|
1013
1015
|
)
|
|
1014
1016
|
:null)
|
|
@@ -1161,7 +1163,7 @@ function BotonFormularioDespliegue(props:{casillero:BotonFormulario, formulario:
|
|
|
1161
1163
|
let nombresCamposResumen = likeAr((casillero.especial?.camposResumen||[])).array().map(c=>c);
|
|
1162
1164
|
var htmlSeccion=document.getElementById(idSeccion)!;
|
|
1163
1165
|
htmlSeccion.innerHTML="";
|
|
1164
|
-
htmlSeccion.appendChild(html.table({class:`table ${nombresCamposResumen.length?'w-auto':''}`},[
|
|
1166
|
+
htmlSeccion.appendChild(html.table({class:`table table-striped ${nombresCamposResumen.length?'w-auto':''}`},[
|
|
1165
1167
|
html.thead([
|
|
1166
1168
|
html.tr([
|
|
1167
1169
|
casillero.aclaracion?html.th():null,
|