Questions tagged as 'table'

1
answer

put elements of a table in a list

I have an empty table, and then a javascript code that allows you to populate the table via input. What I want is to put all the information in this table into an array (regardless of the number of rows and columns in the table) so that later yo...
asked by 11.11.2016 / 22:09
1
answer

How To Switch Between Table Values

Code <table border="1px" width="33%"> <th bgcolor="silver">Trocar de Posição</th> <tr> <td id="cel_01">Texto 1</td> </tr> <tr> <td id="cel_02">Texto 2</td> </tr>...
asked by 25.07.2016 / 08:49
2
answers

Is it possible to do this with table td?

Okay, let's see: //PHONE <table> <tr> <td>COL 1</td> <td>COL 2</td> </tr> <tr> <td>COL 1</td> <td>COL 2</td> </tr> &l...
asked by 02.08.2016 / 05:06
1
answer

Refresh Bootstrap-table

The problem is that I can not get the table (bootstrap-table) to update the data after the registration. I'm trying to do this via JS, but to no avail. I've tried the following: - JS - $.post($form.attr('action'), $form.serialize(), functio...
asked by 10.02.2016 / 14:55
3
answers

Abbreviate content inside cell (HTML table)

I have a table that is made up of values that are pulled from the database .... This table has the predefined size, and it happens that when the pulled value of the bank is larger than the cell, it resizes and messes everything up ... Exa...
asked by 08.09.2015 / 16:31
1
answer

Filter data from a table via a DropDown

I have a table returning the values paid by taxpayers. However I have to return all the data (since the application sums field by field). So far so good. But to show the user, I need to filter the table by date (year), for the user to view th...
asked by 06.03.2015 / 19:35
2
answers

MySQL - Create temporary table according to dynamic SELECT

Is there any way to create a temporary table according to a select with columns created dynamically, as shown in the examples below? ex: SELECT idCentroCusto, 'Dez/14', 'Jan/15', 'Fev/15', 'Mar/15', totalAnual or SELECT idCentroCusto,...
asked by 03.03.2015 / 14:57
2
answers

Line break inside the cell of a table

I have a common table in my HTML, but when a <td> has a large content the line break does not happen, even adding CSS: table td, th { padding: 5px; white-space: pre-wrap; }     
asked by 17.12.2018 / 20:35
3
answers

How to make a field of a clickable table?

I'm doing a project where when I click on employees it opens a page with the listing of employees as you can see in the photo. I need the name of each employee to be clickable, to be able to later open the complete page of the official with all...
asked by 30.06.2017 / 13:49
2
answers

Get line item except one column

Hello I'd like a help regarding clicking a table. When I clicked on the line the data would come from this row except when clicked on a specific column (column 3 for example), because I want to do another action in the column in question....
asked by 13.07.2017 / 22:54