Hello StackOverFlow members.
This is my code.
var app = angular.module('app', []);
app.controller("ctrl", ['$scope', '$http', function ($scope, $http) {
var promise = $http.get("url1")
.then(function (response) {
co...
I develop an Asp Mvc web application, in one of the views I have a table with the following structure:
<table id="grupoActividades" class="ctrlTable table table-striped table-bordered table-hover" cellspacing="0">
<thead class...
I am using Typescript 1.8 + angularjs v.1.5.8
I have a directive that I want to call like this:
<div mi-directiva mi-parametro="ctrl.Objeto"> </div>
My directive is declared as follows:
export class miDirectiva implements n...
I want to upload multiple files using dropzone.js and take the paths of the files to store them in my database, but I have found very little information about it or only for MVC, someone who has already used it and could help me.
Friends I want to convert the longitude and latitude that I get with this code to geographical address
.controller('CtrlUbi', function($scope) {
if (navigator.geolocation) {
navigator.geolocation.getCurrentPosition(function(position)...
This is my code:
{%for obj in empaque %}
celdae = {{"obj.celda"}}
{%enfor%}
if (document.empaque.celda.value == celdae) {
alert("La celda ya esta ocupada") document.empaque.celda.focus() return false;}...
There are three steps I'm doing:
HTML > JavaScript > PHP. In one of them I'm wrong and I suspect it's in the JavaScript.
My HTML: Class Modal. Apparently it works:
<!-- Modal para solicitar evaluación de caso -->
<div clas...
I am using PHP, and JavaScript along with the highcharts library to generate a bar graph, but I get the following error:
Fatal error: Using $ this when not in object context in
C: \ xampp \ htdocs \ graphics \ index.php on line 55
W...
I am validating a field of a form with Bootstrap validator but I have an error that tells me that "Uncaught TypeError: $ (...). bootstrapValidator is not a function", add all the libraries but neither
<form id="enviaConfirmada" nam...
I am trying to align the Y axes with respect to the value 0, example:
link
I have temporarily solved it by putting a padding, but it is extremely sloppy and when re-dimensioning the graph or changing the data it is misplaced (unless the pad...