Questions tagged as 'ajax'

1
answer

.js files are not loaded after ActionLink loads PartialView

I have a PartialView called _MenuLeft that contains my menu items, it is loaded in the _Layout with the Helper Html.Partial (""). Within the 'menu' there is an ActionLink to load into the 'content' div the forms I want, follow the example: @A...
asked by 04.05.2016 / 22:18
1
answer

Laravel - How to save checkbox choice in item list?

In a contact management system, I have a list of items which have a checkbox each (gmail style) so that I can select them and use some action related to the selected ones. What is the best way to save these selected items to each page accessed?...
asked by 11.05.2016 / 01:21
0
answers

How to use UpdateProgress with EnablePartialRendering = false?

I have a page where I need to populate two dropdownlist, but it does not load the UpdateProgress if EnablePartialRendering is set to false. If it is true, the UpdateProgress is loaded, but the second DDL is not.     
asked by 26.05.2016 / 19:18
0
answers

Search in MySQL with FULLTEXT IN BOOLEAN MODE including the keyword operators?

How to make a query through the query MATCH (column1, column2) AGAINST ('keyword' IN BOOLEAN MODE) in an InnoDB table with two fields indexed by FULLTEXT, including the operators that are in the word being searched? Understand: SELECT * FRO...
asked by 23.04.2016 / 04:35
1
answer

Return object json to ajax in C #

Function in ajax function RefreshFuncaoOrdenamentoJornadaSalario() { idOrdenamento = $("#DDOrdenamento").val(); idCategoria = $("#DDCategoria").val(); GrauNumero = $("#DDGrau").val(); $.ajax({ type:...
asked by 22.06.2016 / 22:14
1
answer

I do not get Json's return in Ajax with PHP [duplicate]

I can not get out of the way, what's wrong? I do not get Json's return in Ajax. RegisterClient.php Ajax.js $.ajax({ type: 'POST', dataType: 'json', url: "crud/insere.php", data: dados, success: function(data) {...
asked by 12.05.2016 / 17:57
1
answer

ajax returning white

I once again here. Let's go. Well, my problem is this: I am passing values to my method in php via ajax, but they are not returning anything to me, I did some testing and it is working on the next line I'm going to post the test code (...
asked by 16.04.2016 / 00:58
0
answers

Insert an array with codeIgniter and ajax

Hello I'm trying to insert an array, but in this case, you can insert multiple lines in db. How do I pass the pro codeIgniter data: var productsData = []; $(".productRow").each(function(i){ var pData = {...
asked by 18.04.2016 / 01:50
0
answers

PHP json for Ajax request

I have the following function in Class Read.php : public function selectCliente(){ try{ $stmt = $this->conn->prepare("SELECT CLIENTE.CODIGO_CLIENTE,...
asked by 25.10.2016 / 19:13
1
answer

How to fetch data in JSON in this particular code

I need to do exactly the same as requested in this post , get Json data and return in a specific field. User Jeffson Silva did exactly what I needed and made available on this Example . I just ran into the following problem: I can not fetch...
asked by 08.04.2016 / 18:21