In my html code, I have a select and I need to select an area and show me all the tables (represented as buttons)
Linq (MesasController.cs)
[ResponseType(typeof(Mesa))]
[System.Web.Http.HttpGet]
[Route("GetMesasPorZona/{idZona}")]
public IQ...
I am working with Angular js in a modular application. When a user enters the application, it determines the number of boats that the company has and in the menu view it shows a selector that allows to select one of the boats to manage it.
<...
When I try to validate a page made with AngularJS, I find that it does not correctly validate and throws numerous errors in the code (it is usually the same repeated). The problem is that the attributes ng- are not considered standard and...
I would like some help. I am generating a table within a ngFor , but I need to show in the footer of the same the sum of a certain field:
<div *ngFor="let pista of prize.pistas">
<div>
<h2>{{ pist...
I have an array of students which I present their names in a list and under each name two buttons that allow assigning them a positive or negative rating.
What I want to do is to click on the button (positive or negative) to show a message an...
I have the following code that shows me a series of hours from 07 to 22. What I want to know is how to get the value of the time selected in my controller and if it is possible to print on an alert.
Vista html
<div ng-controller="MyCtrl"...
I created a custom directive in angular , and I want to share a value between my directive and my typescript file, this is an example of my 2 files:
<!-- Mi html -->
<div>
<input type="radio" name="colors" (click)="color='...
I once read in a documentation that you could use an ionic or angular style directive, I do not remember well, I just remember that it was like this: [style.width]='expresión' and I can not find the documentation, does anyone know how to...
I have an http service and with the code I have received 5 ids. I would like to call them using a scope using a cycle if , the json format has as property isFile that if it is false it is a folder and if it is true it is a file. My...