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...
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...
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...
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...
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...
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...
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',...
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...
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",...
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...