Posts by Pedro Henrique Calixto • 31 points
2 posts
-
1
votes1
answer32
viewsQ: Pass and declare parameter (matrix) in Polymer
I need to pass the following prametro to a Polymer element: [ ["id", "nome", "idade"], [1, "matheus", 16], [2, "cristian", 16], [3, "pedro", 10], [4, "henrique", 10] ] as I declare this variable (a…
polymerasked Pedro Henrique Calixto 31 -
2
votes2
answers105
viewsQ: checkbox in dynamic matrix field
I found a code in one of the questions of the forum, follows: function criarTabela(conteudo) { var tabela = document.createElement("table"); var thead = document.createElement("thead"); var…