Questions tagged as 'json'

0
answers

Sign in to WebService via Android

And what do you guys all say? My question is: I'm trying to create a login screen on Android being the registered data are in a mysql database, to establish the communication I have a working WebService Rest, the question is: I'm sending a...
asked by 18.03.2016 / 18:22
2
answers

Write a new html with js or jquery

I wanted to know if there is a way to present a new html page using a string containing all the content of the new page I am trying to present, the code is below: $("#form").on('valid.fndtn.abide', function () { var data = $(this).seri...
asked by 30.09.2015 / 15:59
0
answers

Select dependent with three levels

I am putting together a simple vehicle reservation system for the company and need to set up a "triple" combo that verifies the vehicle and the times available for it. I made a double of the expected departure and arrival time, where the expecte...
asked by 27.11.2015 / 18:40
2
answers

Generate HTML elements via Javascript

I need to create a code that after passing some parameters it generates a graphic similar to the image below, I thought of creating a table for each activity. Does anyone have any tips, or do you know an article that can help me? I think of usin...
asked by 17.10.2015 / 23:57
0
answers

How to import Json data from a table into Excel

I want to generate charts with Chart.js and need to import data from an excel spreadsheet to json in order to draw the chart. var data = { labels: ["January", "February", "March", "April", "May", "June", "July"], datasets: [ { labe...
asked by 07.04.2016 / 15:18
0
answers

Insert data dynamically with xml the coordinates in the heat map

I'm trying to use this code to read data from the xml parts coordinates instead of the data statically inserted into the code but does not work when done this way. Code: function getPoints() { return [ //new google.maps.LatLn...
asked by 13.04.2016 / 21:52
1
answer

PHP + Jquery + JSON

I have function calling an ajax. As below: function verifica(){ var meuid = $('.meuid').attr('id'); var datas = "user="+meuid; $.ajax({ type: "GET", url: 'sys/stream2.php',...
asked by 09.02.2016 / 01:53
1
answer

Handle the JSON data coming from a request from the jQuery datepicker with ajax

I need to create a schedule. I have a datepicker and a fixed table next to it with schedules that start from 08:00 am until 19:00 pm and when I click on a datepicker day it returns all the queries from that day in the table to side in their resp...
asked by 11.12.2015 / 18:57
2
answers

Change in json file format

My file is coming in this format, but I wish it did not appear this #id before sale: { "$id": "1", //como não mostra isso? "venda": [ { "$id": "2", "poule": 73, "idusuario": 4, "vendedor": "ITAMAR SOUZA",...
asked by 22.01.2016 / 19:38
2
answers

Send Display Text of an Enum by Json

Well, I have an enum for the days of the week, being: Segunda = 2, [Display(Name="Terça")] Terca = 3, Quarta = 4, Quinta = 5, Sexta = 6, [Display(Name = "Sábado")] Sabado = 7 So I build an object that has a da...
asked by 19.01.2016 / 20:50