ArmadoDeForm.js 1 KB
function ArmarForm(data) {
    document.getElementById("ArmarFormContainer").style.display="none";
    document.getElementById("FormularioResultante").style.display="block";

    let m = data.length;
    for (let n = 0; n < m; n++) {
        let padreBotones = document.getElementById("BotonesContainer");
        let padreTabs = document.getElementById("TabsContainer");

        let boton = document.createElement("Button");
        padreBotones.appendChild(boton);
        boton.setAttribute("id", "Boton" + n);
        boton.setAttribute("value", n);
        boton.setAttribute("class", "Botones");
        //boton.setAttribute("onclick", HabilitarTab(this)  );
        let ancho = ((100 - (0.2 * m)) / m) + "%";
        boton.style.width = ancho;
        let tab = document.createElement("div");
        padreTabs.appendChild(tab);
        tab.style.width=ancho * m;
        tab.setAttribute("id", "Tab" + n);
        tab.setAttribute("class", "Tabs");
    }

    document.getElementById("Tab0").style.display="block";
}