Posts by user8465 • 258 points
13 posts
-
-1
votes1
answer51
viewsQ: How to make the bootstrap3 icon transparent with white edges?
The icon looks like this at the moment -> And I want him to stay that way ->>> <nav> <a id="contato_link" [routerLink]="['/admin']"> <span class="glyphicon…
-
0
votes1
answer52
viewsQ: Upload gif before data reaches page
I am bringing the data from the server through an NGFOR with pipe async but I would like to show a gif of loading until the data arrives, it takes about 3 seconds for the data to appear on the…
-
1
votes2
answers42
viewsQ: Show and hide from bank
I’m doing this job <script> function ver_endereco(){ $("tr.tr_end").toggle(); } </script> In this PHP code <?php while($row = $result->fetchArray()) { ?> <tr…
-
5
votes1
answer933
viewsQ: File . exe in Visual Studio 2015
How do I generate an executable running on any machine without . Net installed? The one in the briefcase bin/debug does not serve because he needs the . Net to run.
-
0
votes1
answer66
viewsQ: Remove default Jquery mobile style
When I create a list ul with the listview attribute and place a link to href, automatically the framework darkens the element from the list and puts an icon at the end. How can I remove this default…
jquery-mobileasked user8465 258 -
1
votes1
answer404
viewsQ: problem with Response.redirect
Response.redirect is causing my msg javascript to be undone, as I do to run redirect and make the message appear ? if request("action2") = "alteracliente" then sql3 = "update clientes set…
-
2
votes1
answer147
viewsQ: Eclipse does not show java attribute hint
When I press on CTRL+Space and I click on attribute, Eclipse is not showing the attribute hint before Click. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"…
-
1
votes0
answers94
viewsQ: Line graph does not render (p:lineChart)
xhtml code <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"…
-
1
votes1
answer145
viewsQ: Method not found:
When I click the save button to run the method, the following error appears in the console: Jan 15, 2015 4:12:26 PM com.sun.faces.lifecycle.InvokeApplicationPhase execute Advertência: Method not…
-
4
votes3
answers5090
viewsQ: How to make eclipse auto-complete code automatically without pressing Ctrl+space?
<ui:define name="menu"> <ui:include src="/includes/menuPrincipal.xhtml"></ui:include> </ui:define> <ui:define name="conteudo"> <h:form id="frmFabListagem">…
-
4
votes3
answers2948
viewsQ: How to add contiguous numbers from an array?
I have a array of numbers being typed by the user, and need to add the numbers of this array. import java.util.ArrayList; import java.util.Scanner; public class Questao3 { /*3.Fazer um algoritmo…
-
6
votes2
answers5446
viewsQ: How to know which script is running on a given HTML element?
In Firebug it is possible to know which CSS is being applied in the HTML element, but it is not possible to know which Javascript is running in the HTML element, you have to know this?
-
0
votes1
answer823
viewsQ: How to create tabs in an android app ?
<TableRow> <TextView android:text="Tipo:"/> <RadioGroup android:id="@+id/tipos"> <RadioButton android:id="@+id/rodizio" android:text="Rodízio"/> …