Questions tagged as 'ajax'

1
answer

Error sending delete by ajax - Django Rest framework

I have 2 serializers: class DetalleSerializer(serializers.ModelSerializer): producto = serializers.CharField(source='producto.nombre') class Meta: model = DetalleVenta fields = ('cantidad','producto') class PedidoSer...
asked by 04.04.2018 / 02:48
0
answers

Fill Select depending on another select in wordpress + CF7

I am using the Contact FOrm 7 plugin in wordpress. I would need to fill in a selection with the available crops, and depending on the chosen crop, I would fill in another select with the varieties of that crop. With the plugin CF7 Conditional...
asked by 14.03.2018 / 11:36
1
answer

Reinitialize DATATABLE with the help of jquery ajax and a .txt

I'm here with the mission of modifying the values of a DATATABLE by clicking on a button created in the html with help also of bootstrap (possibly not has to see but at least to have it under consideration). I'm working with python and djan...
asked by 12.03.2018 / 16:06
0
answers

Check if there is an email with Ajax

I have a simple registration form, where I want to highlight the mail input in red when I check in the DB that there is already a user with that email. HTML code: <form method="post" action="altaUsuario.php"> <br><label...
asked by 10.03.2018 / 10:54
0
answers

use excelrest with prtocolo https

Good morning, I would like to know if it is possible to use excel services with https protocol and if you can give me an example of it. I tried to make a request to an xlsx file hosted in a library of sharepoint 2013 but it throws me an error...
asked by 12.03.2018 / 18:21
0
answers

How to return an Ajax response to my view from a controller in Zend Framework 1?

I tell you, I'm trying to return a data to my personal search, what I do is make an ajax call to the server, specifically to the action maintenance / validate registration, this data is shown in a console.log (response), just to test , but when...
asked by 09.03.2018 / 21:09
0
answers

Run setInterval within a Promise in JavaScript

I want to execute a function that makes a call to ajax during intervals of 800 milliseconds and later after 10 seconds, to make stop of the setInterval (This in particular does not complicate me), the problem is that the call of this function de...
asked by 09.03.2018 / 19:51
1
answer

C # (Fill Modal Bootstrap with Ajax function)

public IActionResult GetAssetsTree(AssetDataModel Parent_ID, AuditIdRow row,string workspaceId){ _assetService.CollectionName = workspaceId; _assetService.ParentId = workspaceId; return(Json(CreateTree(null,null))); } CreateTree...
asked by 05.03.2018 / 14:02
0
answers

I can not save fields changed by Ajax in Drupal

I have a problem with dropdown lists that are dependent, when I select a change the second and then the third, until here works well, the problem is when I try to save these values in their respective table of each field but not guard. I have th...
asked by 12.03.2018 / 15:15
1
answer

Error sending string via ajax to php that writes it to a text file

Here is the code js: $.ajax({ type: "POST", url: "./ladderboard.php", data: { "json": JsonString }, success: function(data) { alert(data);...
asked by 28.02.2018 / 14:13