I'm trying to start a mat-select, I'm handling the data well, but I want to do something when one of the values is selected.
I use angular 6, this is my ts code:
import { Component, Input } from '@angular/core';
i...
These are my models
class Colegio(models.Model):
id_colegio = models.AutoField(primary_key=True)
nombre_colegio = models.CharField(max_length=100, blank=True, null=True)
def __unicode__(self):
return self.nombre_colegio...
. Hello, I share this problem ... the data goes:
With this part of the function I load the data in a datatables.net and in the last row I render the selects with the data of the database:
var objTipo = new Object();
objTipo.i...
The next problem is that when a person selects an option of a select, the value of that chosen option is obtained and stored within a php variable.
Here I get the Id of the selected option.
It occurs to me, for example, to use done or suc...
I have the following code in a file with cshtml extension:
@Html.DropDownList("TipoIdentificacionId", null, htmlAttributes: new { @class = "form-control" })
With which I load in a select a list that comes from the database, this does it wel...
Good morning,
This is a row of my table, each of them has an onclick event. Pressing on the select calls that event something that it should not do. How can I do so that if you press on the select, open the select and if you press outside the...