Posts by Diego Moreira • 684 points
28 posts
-
-2
votes1
answer56
viewsQ: How to identify the customer by the public key of a certificate
How do I identify the X client, Y client and Z client when they try to authenticate via API... Example... such a customer sends me the key uy2395734asdfas, how do I know that that customer is…
-
0
votes1
answer311
viewsA: Bold the title of a span
Try this: <span class="teste" title="teste">teste</span> .teste { font-weight:bold; } Good luck.
-
4
votes2
answers308
viewsA: Increment numbers to ID name
Have some div to manipulate that it will become easy. Create a variable to always add one id new. In my case, I used the i; Within the function of click of the button you will use, add the .append…
-
8
votes1
answer933
viewsA: Inclusion billet box
I have resolved as follows: In the upload header, I added: SOAPAction: "IncluirBoleto" It worked 100%, returned to me 200 OK in response. Good luck!
-
6
votes1
answer933
viewsQ: Inclusion billet box
Friends, I am trying to include a billet in the Box Webservice, however, when using the layout passed in the documentation, I am not successful. The error is this: (500 Internal Server Error)…
-
0
votes1
answer157
viewsQ: APK validation at Google
I have a app I need to validate the integrity of the data. For this, I need the google Tell me if that app was signed by him or not. But for this to work, I need him to run me a token for…
-
0
votes1
answer379
viewsA: I cannot decrease the size of the APK file
I had that problem. I decided to create a new project and "copy" its configuration and then change to "SDK Assemblies Only".
-
1
votes0
answers57
viewsQ: Marker Draggable without Longclick
At setting a Marker as Draggable(true), you need to hold clickado on the same to turn it "Draggable". I need that simply by dragging your finger on it, it drags. An example would be the 99taxi, who…
-
1
votes2
answers970
viewsA: How to make a Datagrid in HTML5?
In any case, for you to mount a Datagrid in Html, you will need to foreach the values. Example // header da tabela string tabPedidos = ""; tabPedidos += "<table class='table…
-
0
votes1
answer100
viewsQ: Xamarin Mac Agent Limited
I’m trying to program for iOS using Xamarin, but I’m starting to get frustrated. When I open Xamarin Studio on MAC, I can normally view the design of my layout, but when I try to visualize using…
-
1
votes3
answers789
viewsA: I can’t align a label inside a <td>
Try placing the parameter Style within the tag calendar with a value of float:left!important. Will lead to label to the right of the calendar. That should solve.…
-
3
votes1
answer58
viewsA: Run a function from a class
What you can do is pass values to the Activity B. Check if when called, there is some value in Intent and treat your algorithm. Sort of like this: Activity A calling a B: Intent i=new…
-
1
votes2
answers1433
viewsA: How to refresh a bootstrap-table after giving update?
In your scope, I’d do it this way: Scope ta dabela: <tr id="row_12"> <td class="htmlCampo1">... <td> <td class="htmlCampo2">... <td> <td class="htmlCampo3">...…
-
1
votes6
answers906
viewsA: Convert text from div to number
Take the value of the element, then do a .split with javascript var str = $("#our_price_display").html(); //pega valor todo var res = str.split(" "); //seu valor você pega no res[1] alert(res[1]);…
-
0
votes1
answer218
viewsQ: Wait with Alertdialog()
good! My problem is with the AlertDialog asynchronous of Xamarin.Android. I have a class with a method that assembles an alert with some fields... With the data of these fields, I assemble an object…
-
0
votes1
answer48
viewsA: Event handler for td?
Look, to manipulate this type of element, I recommend you use the function bind of jquery in the modified element. When the element is modified, you can call a callback to do whatever you want after…
jqueryanswered Diego Moreira 684 -
0
votes1
answer27
viewsQ: Error in project.json file
I have an error in my project, it appeared after I added Entity Framework to my project! This error persists on line 21 of the file project.json. I’m using Visual Studio 2015. The exact description…
-
2
votes1
answer248
viewsQ: ASP.NET vs Intraweb
Since I come from PHP and I’m starting now with ASP.NET and I’m pretty raw, I’ll need to argue about. NET to one of the owners of the company, and he develops in Intraweb. By my vision of WEB, the…
-
1
votes1
answer951
viewsQ: Error even having the click method
Please, can someone help me with a boring bug with ASP.NET? Next... I have a button: <asp:Button ID="cadastra" CssClass="btn btn-success btn-lg" runat="server" Text="Cadastrar Cliente"…
-
2
votes1
answer423
viewsA: Translation Theme Opencart
1- It is a package yes. Actually when I installed en, I downloaded directly from here, in this link you have the instructions on how to install; 2 - Probably will be the same, maybe it has some…
-
0
votes3
answers125
viewsA: mysql UPDATE, does not receive function value in PHP
Hello, your function has to be returning something... return $algo;. If your application is the way you passed it, it won’t work, the ID index is outside the function parameter. Change this: $id =…
-
1
votes2
answers2331
viewsA: Save to database using jquery
Start by debugging the code to see if the form is going correctly. <?php // incluindo o arquivo que faz a conexao com o banco include ("../includes/conexao.php"); if (!empty($_POST)) {…
-
2
votes1
answer452
viewsA: Modal made in bootstrap
I think Button’s being replaced by <a>, then do the following... <button type="button" class="btn btn-default btn-lg" data-toggle="modal" data-target="#myModal"> <span…
-
1
votes1
answer89
viewsQ: Request and Response in JSTL, when to use?
I’m wrong to say that request I will redeem what I sent for an "action"? And response? I read in several places about and did not understand very well, it was not clear to me... Someone can…
javaasked Diego Moreira 684 -
3
votes4
answers15572
viewsQ: What is the super() function for;
I am studying Java and I need to understand the logic of a code here. I wanted to know what this piece of code does: public class UsuarioController extends HttpServlet { private DAO dao; public…
-
1
votes3
answers575
viewsA: Ajax opening content without refresh
In the . load function, you are passing wrong parameter to be loaded $("#conteudo").load(this.href); change to $("#conteudo").load(href);…
-
1
votes3
answers1490
viewsA: Changing the modal content
Do the following... <a href="javascript:;" onclick="modaModal('<?php echo $title_modal; ?>', '<?php echo $text_modal; ?>');">Click me (seubotao)</a> function…
-
3
votes3
answers741
viewsA: PHP Image Upload Error
Before you upload your image, create the directory if it does not exist. After the code checking you can upload. $folder = 'seu/diretorio/uploads'; if (!is_dir($folder)) { mkdir($folder, 0777,…
phpanswered Diego Moreira 684