Questions tagged as 'select'

2
answers

capture selected value of datatables (Jquery) and save in array

I am using Jquery datatable, I would like that when selecting values from the table, they are stored in an array. I tried the following. $('#tblMsnToColab tbody').on( 'click', 'tr', function () { $(this).toggleClass('selected'); }...
asked by 28.08.2018 / 11:59
1
answer

Data filtering between two SQL Server tables

Good afternoon, I have a problem wanting to select specific data when making a query to two tables; The tables are the following: create table persona ( id int identity (1,1) not null, nombre varchar (350) not null, apellido varchar (350) not...
asked by 22.05.2018 / 19:41
1
answer

Problem with u-select placeholder

Apparently when I place a ui-select within many elements, the placeholder of this element gets a width: 10px (I do not know why), which is a problem because apart from seeing that element badly, it can only be selected giving clicking just where...
asked by 30.03.2018 / 02:16
1
answer

Query with conditions operating with ALIAS in SQL

Keeping in mind that A and C are subqueries ... that represent the stipulated articles and the counted articles COUNT(OSZE.X_OrgSubZonaElem_ID) CANT_ELEMENTOS, COUNT (A.X_OrgSubZonaElem_ID) CANT_ASIG, COUNT (C.X_OrgSubZonaElem_ID) CANT_CONT,...
asked by 06.03.2018 / 18:16
2
answers

manipulation of values with a select

The issue is that I have a table that is of hotels and with a while it brings the name and the price of the hotel in its last position, the matter is that when the user chooses the hotel automatically I throw the price of the hotel hotel,...
asked by 18.12.2017 / 00:31
1
answer

The combobox does not send the selected code

Good evening I know they did not miss me, but I'm still stuck like a truck in the sand. Accomplishments this week: I've already 'awakened' and I can pass not only one but my three variables. I already prepared all the 'pretty' query as Cedano...
asked by 08.11.2017 / 00:55
1
answer

Perform a query using a select in HTML

Very good, I'm trying to make a query using the selected option in HTML select, which I named "filter", I create the dynamic options and with a switch I get the selected. The case is that from there I'm stuck do not know where to put the code th...
asked by 27.03.2018 / 17:48
2
answers

Load a SELECT depending on another SELECT - Javascript - DOM

Without using jQuery, only Javascript. I want to add the options of the second select depending on the value that the first select takes. The first select chooses the province we want to deal with, and automatically depending on the province...
asked by 22.05.2017 / 13:23
2
answers

Find a data from a table and place that data in another ORACLE

I have a table in an Oracle database called temporary CREATE TABLE temporal( Nombre varchar(50), Tipo varchar(50), Pais varchar(50) ) ------Datos------ ---------------------------------- Nombre | Tipo | Pais -----------------------...
asked by 03.01.2019 / 08:02
1
answer

SQL Group SUM by idemployed

good and tried in different ways to try to group a sum of 3 tables I will write the example to be clearer SELECT v.fecha_ven, e.apellidopaterno_emp, e.nombre_emp, SUM(d.precio_dv * d.cantidad_dv) AS Total FROM detalle...
asked by 20.12.2018 / 22:34