Questions tagged as 'ajax'

2
answers

Url Ajax request pointing to a laravel route

I configured the following route in my route file: Route::post('order/productsByCategory', ['uses'=>'OrderController@productsByCategory']); How do I use it in my Ajax request? $.ajax({ url: "", type: 'POST', dat...
asked by 27.03.2017 / 03:45
2
answers

Values from one form to another

No index.html will have a pre-form with name, email, city and UF. I will need to get this data and play to another form that will be in another html file. I have a certain notion in jQuery, but I wonder if I'm going to have to use a...
asked by 27.03.2017 / 21:05
1
answer

How is a page updated in PHP via AJAX?

I started thinking about using AJAX in an application I'm developing, but I've encountered some problems with it. I would like to understand how it works, to make the most of this "tool". I had no problem adding static or simple php scripts....
asked by 30.04.2017 / 09:56
1
answer

SELECT DYNAMIC CODEIGNITER - AJAX

Hello! I have the following tables: tbl_encargo tbl_category tbl_encargo Since in tbl_lacamento there is a field ( id_categoria ) that receives the ids of tbl_categoria and tbl_categoria receives its id (...
asked by 19.06.2017 / 23:04
2
answers

Problem with return of AJAX request

I am making a request in ajax but the result of it does not update, it is as if it were in some kind of cookie. function AtualizaTotalItensNota(idFornec) { $.ajax({ type: "GET", dataType: "text", url: "/sist...
asked by 17.01.2017 / 12:39
1
answer

ASP NET MVC with JQuery

I made an ajax request, but it does not call the controller, when debugging javascript never drops in success and the console appears Error processing XML. Controller: [HttpPost] [ValidateAntiForgeryToken] public ActionResult Cadastro(Pedid...
asked by 30.03.2017 / 19:48
1
answer

How to pass multiple arrays to page in PHP

→ $scope.items = []; → dados = $('#meu_form').serialize(); I would like to know: how to send / receive / read the above arrays to a page in PHP? JavaScript: app = angular.module("app",[]); app.controller("control...
asked by 05.01.2017 / 01:27
3
answers

Change a select based on the selection of another select (from data in the DB)

I have the following problem: In a form, I need to make a selection of a MANUFACTURER, and according to this selection, it will display the PRODUCTS bound to that manufacturer only. I have the following table where I register the MANUFACTU...
asked by 05.01.2017 / 17:40
1
answer

Which method to use to checkbox a search result to the DB made in ajax?

I need to checkboxes for a forms editing page, the values are saved in a table where the checkboxes that have been marked in the register have been stored, however I do not know how to pull those results and leave the same fields edit page check...
asked by 20.12.2016 / 06:20
1
answer

Post in two tables simultaneously in AJAX

The code below it is working, however my question is: Is there any way to do a post on two different addresses simultaneously using that same code without repeating it? For example, in the code below I insert data into a table, but there are...
asked by 03.02.2017 / 12:52