good morning
I have the following code to assign a list to my DropDownList from the controller
ViewBag.Ciudad = new SelectList(GetCiudadAll, "idCiudad", "NombreCiudad");
in the view
@Html.DropDownList("Ciudad", (SelectList)ViewBag.C...
I have a WebService with ASMX extension made in .Net running in IIS on a server in my local network ip:x.x.x.10 .
The URL of my WebService is link , requires a parameter codigo of type int and returns a Data...
This is my code that generates the json
<script>
$('#table2').on('check.bs.table', function (e, row) {
// print_r(row);
var array = {data: row};
var paramJSON = JSON.stringify(array);
// print_r(JSON.stringify(arr...
In my basic code with JavaScript and PHP so far I can send an email with test data, the next step in the process is to add an attachment to the email .
Following this, the following doubts have arisen:
1. The first one related to the...
I find myself testing this library highcharts and I would like to filter by date by consulting a BD, what would be the better way?
the sql would be the least because there goes a WHERE however I have two fields in PHP for...
I have a problem and I do not know how to use a scope variable and show it on the map, it does not recognize the location
/**
* Created by gamba on 20/10/2016.
*/
var app = angular.module("mapas",[]);
app.controller("myctrl",func...
I need to check if a unicode is stuck and remove it from the string ...
//Trae el array.
$scope.pasteTitle = function (e){
var stringUnicode = e.originalEvent.clipboardData.getData('text/plain');
console.log(stringUnicode);...
In my studies of the Ionic Framework I am learning about controllers, I have been working a simple example of a page with a login, then my HTML code, I do not leave it anymore because the rest was generated by Ionic and I did not touch it at all...
Why, when you press an image that shows a popOver Bootstrap, this
it only unfolds when the image that invokes it is pressed a second time, whenever you click again on the image I must press
twice to show the popOver.
Image tag that redirects...