Posts by PHMV • 91 points
8 posts
-
0
votes1
answer164
viewsA: Upload image inside Peater C# Asp.net
Enter your code inside an Updatepanel with the attribute Updatemode="Conditional", below: <asp:UpdatePanel ID="upGeral" runat="server" ChildrenAsTriggers="false" UpdateMode="Conditional"> In…
-
0
votes1
answer47
viewsA: Error in Javascript array
Use JSON.stringify, below: var zx_products = JSON.stringify({ "zx_identifier" : "<%=RSProdutoDetalhe("Codigo")%>", "zx_amount" : "<%=PrecoProdutoCarrinho%>", "zx_currency" : "BRL",…
javascriptanswered PHMV 91 -
1
votes1
answer52
viewsA: Flex display and width of child elements not working
Replace these two roles in your CSS: label,input,textarea,select,option{ margin:0; } .mini-inputs{ display:inline-table; width: 100%; }…
-
1
votes2
answers289
viewsA: Validate max_size on an input type="file" with JS
Inserts below your extension comparator: if (validExts.indexOf(fileExt) < 0) { alert("Invalid file selected, valid files are of " + validExts.toString() + " types."); return false; }else…
-
0
votes1
answer25
viewsA: Assignment of Function Jquery to Imagebutton
I don’t know if I understood what you said but you can put Function in the Onclientclick attribute or do it directly in Jquery Like this: $("#<%=btnImpListaXLS.ClientID%>").click(function(){…
-
1
votes1
answer36
viewsA: Bug, button disappearing when opening dialog box
Ideally you don’t do this directly in the form tag. Create a div so it can receive the JS value and make the selector change. Follows the code: $('div').html(""); //limpa a div $('div').dialog({…
javascriptanswered PHMV 91 -
0
votes2
answers6376
viewsA: Center a div with text and position Absolute in the center of div pai
In the div of the text put **margin: 0 auto;**
-
3
votes0
answers730
viewsQ: Httpwebrequest - Recover Nfe
I’m accessing the link of the Farm site ( http://www.nfe.fazenda.gov.br/portal/consulta.aspx?tipoConsulta=completa&tipoConteudo=XbSeqxE8pl8%3d) with the aim of returning the filled Nfe. When I…