Posts by Vitória Moraes • 121 points
10 posts
-
0
votes1
answer35
viewsA: Java Android How to build a random database?
You can make your code recognize that each " : "passed by Json means a new column. And whatever is left of those dots means the name of the table, and the right its contents.
-
2
votes2
answers172
viewsQ: Scroll Element of the WPF C#Datagrid class
I have a function that creates a grid, But I don’t know how to get that value, the function is down here: using System.Windows.Controls; public override FrameworkElement criar() { if (formulario ==…
-
1
votes1
answer97
viewsA: Appear div when clicking on the image
to make a div appear or disappear you must change the "display" property of it: <div style="display: none" > texto 1 </div> /* "none" quer dizer que ele está invisivel*/ <div…
-
1
votes3
answers50
viewsA: Add button does not differentiate products
You have duplicated Id’s, there can be no id’s with the same name referencing different elements, so you should use class. The code you are doing understands that it should fetch an id (which should…
-
0
votes1
answer41
viewsA: Custom banner system
Good with css you can create a class for image that stay behind and inside it you put: .exemploClass{ z-index: 0; background-image:imagem.png; } and in the image that will be on top: .exemploClass2{…
-
0
votes2
answers56
viewsA: Same header and footer for multiple sites
Searches the xslt language, it is used to leave xml files in html format. So when you change this single xml or even xslt, all htmls will be updated. But you have to do more research on this, not…
-
0
votes2
answers56
viewsA: Same header and footer for multiple sites
just create an XSLT file, and have it uploaded to the body of all htmls with the onload event.
-
1
votes2
answers509
viewsA: CSS3 Adjust table to fill blank space generated on Landscape page
I understood your problem as if you wanted to leave all tables of the same height, thus hiding all free space,: height: auto; for: min-height: 100%;…
-
2
votes3
answers33
viewsA: Take the variable div’s attribute and send one at a time to another function
function deletarTudo() { var lista = document.getElementsByTagName("div"); for (var i = 0; i < lista.length; i++) { controle("adicionar", lista[i].getAttribute("id")); } }; maybe it works that…
javascriptanswered Vitória Moraes 121 -
2
votes0
answers88
viewsQ: Javascript cookie limit
I have a javascript code that loads cookies into an html page. Every 15 seconds a function is activated, and this saves new information in 5 cookies, and makes the LOAD of 5 cookies for variables.…
javascriptasked Vitória Moraes 121