Questions tagged as 'ajax'

0
answers

Load easycomplete autofill from the database?

I am trying to fill out the easyautocomplete autocomplete with information from the database. <div class="contenedor"> <center><label for="" class="titulo">Cambio de cédulas de consumos</label></center>...
asked by 06.02.2018 / 20:04
1
answer

How do I check if an answer in json comes empty from a webservice .svc?

I do a post from a form and when the json returns with the objects of a sql table it gives me without problems .. but when there is no data in the table and returns empty the json returns it to me badly formed example I want to control it for th...
asked by 10.02.2018 / 09:18
0
answers

how to write html in ajax

Hello, I have this code for a table with user data. I want to write the options to edit and delete in ajax, but I do not know how they are written, if someone could tell me how it would be helpful PS: I know it is poorly written, so I want yo...
asked by 12.02.2018 / 16:49
0
answers

undefined by selecting the value of the id attribute of a html button then adding this button by means of ajax jquery

It happens that I load some buttons by means of the append method of jquery, this in the success of an ajax call to the server to obtain some values that I will put in the id each button as well as in its value. When the page loads, it shows...
asked by 16.02.2018 / 17:31
0
answers

ajax php mysql select dependent

I have a select that depends on another, when selecting the first one it throws me an error in a modal window of the browser "parsererror" and it does not load the data associated with the option of the first select. I have looked for the way to...
asked by 05.02.2018 / 19:41
0
answers

How do I send a variable for GET AJAX

$("div#enviarpost").click(function(){ ididea =$("#ididea").val(); var datos = new FormData(); datos.append("ididea",ididea ); $.ajax({ url:"views/ajax/ideas.php",...
asked by 19.02.2018 / 22:02
0
answers

Modal window with 02 bootstrap views with c # mvc

Someone could help me, I have a mvc c # master-type detail application, to add detail in the main view I load a modal window (bootstrap) that contains another view (not partial view) I select an option of a dropdownlist, when I I accept, return...
asked by 20.02.2018 / 03:30
0
answers

Problems uploading a file with other parameters, sending them by ajax to a servlet

I need to send a form that has two input = file and other parameters, I am sending them via ajax to a servlet that receives a URL parameter that I use to determine the specific function for that process (a servlet for my entire module). .. I hav...
asked by 05.02.2018 / 17:58
0
answers

save canvans in variable blob of mysql with a post ajax and php

I need your help a week ago I am trying to store an image of a Canvas in a mysql table, the column of the table is of type longblob. the HTML is as follows: <!DOCTYPE html PUBLIC > <head> <meta http-equiv="Content-Type" content=...
asked by 05.02.2018 / 18:54
2
answers

Pass data through a link

Through a foreach: foreach ($conexion->query($cefpp) as $row) { $id = $row['id']; $dato = $row['dato']; echo "<a href='plantilla.php?id=".$id."' class="dato" id="dato" data-valor='".$dato."'>"; } I show...
asked by 06.02.2018 / 11:53