Questions tagged as 'ajax'

1
answer

plot X-axis Graph with Data

Galera, I have a chart and would like to put the X axis in Data It was like this: xAxis: { tickColor: 'transparent', tickDecimals: 2 }, I put it like this: renderer: $.jqplot.DateAxisRenderer, tickOptions:{formatString:'%Y-%...
asked by 12.06.2017 / 22:56
1
answer

Send date format javascript via ajax

I'm trying to send data from a registration form via Ajax / javascript to a java service, however the database receives the data in date format and I do not know what to do to convert to date, how do I perform this conversion? / p> function con...
asked by 09.06.2017 / 01:36
1
answer

Hide field select according to radio button

I'm trying to hide select fields according to the radio button I can hide the inputs, but the select fields I'm not getting, could anyone help me? Form: <div class="form-group"> <label class="control-label col-m...
asked by 08.06.2017 / 21:18
0
answers

Ajax request canceled by browser

I'm using a plugin for multiple image uploads, the kartik-v / bootstrap-fileinput . In my localhost is working without any problem but when I send the application to the server and try to upload the images, after the sixth image the requests ar...
asked by 07.06.2017 / 12:54
1
answer

Alternatives to the get method

I am making a system and have a part that will mess with boleto bancário. For security / privacy one user can not see the other's ticket. I make a check every time he accesses this page to see if it has any relation to that ticket ID. Thinkin...
asked by 07.06.2017 / 16:02
1
answer

How to use checkbox to update information in mysql?

I'm using Ajax to update the database, but I'm passing data by reference, it works and updates in the database, but clicking the button to disable it works but if I click to disable it and then activate , does not work unless you refresh t...
asked by 07.06.2017 / 19:10
2
answers

Inserting data into postgresSQL database with PHO, AJAX and JQUERY

I'm trying to insert data into a postgres database using php and ajax with jquery. But always from error. It's for a college job. Could someone explain the error in the code? $("#registrar").click(function(){ $.ajax ({...
asked by 20.06.2017 / 06:42
1
answer

Problems and doubts with sending data Ajax and form PhP

Hello. I need to save some information from the html form in php but without reloading the page. I tried several ajax tutorials and video lessons but I'm doing something very wrong or I really did not understand anything about how ajax works. My...
asked by 09.06.2017 / 22:55
1
answer

Combobox Ajax PHP Returns nothing

I can not return anything .. when I test it instead of the city field and I delete it it returns but with the name of the city it does not return do you have data limit for a CMB? $(document).ready(function() { $('#carrEst').change(functio...
asked by 06.06.2017 / 20:28
1
answer

Get page with PHP or Ajax?

I have the following código to get pages in my content with url : <?php $url = (isset($_GET['url'])) ? $_GET['url'] : 'home'; $url = array_filter(explode('/', $url)); $file = './pages/' . $url[0] . '.php'; if (is_file($file)) {...
asked by 24.06.2017 / 01:49