Most voted "table" questions
Use this tag when the question refers to a table-only resource, information or problem, which is an HTML tag used to define a table.
Learn more…493 questions
Sort by count of
-
9
votes3
answers1784
viewsHow to format a table (data.frame) with pdf publishing quality (latex) in R?
Suppose the following table: tabela <- structure(list(Sexo = structure(c(1L, 1L, 2L, 2L), .Label = c("Homem", "Mulher"), class = "factor"), Grupo = structure(c(1L, 2L, 1L, 2L), .Label = c("A",…
-
8
votes3
answers1076
viewsIs anchoring a TR possible?
It is possible outside an element tr link some address as below? <a href="www.enderecodesejado.com.br"></a> If it is not possible, Javascript would solve this or better forget? I have…
-
8
votes3
answers644
viewsInsert string data into a table
I have a text file that I read and adjusted in a string texto so that it would stay that way: {nome="Cassio",sexo="M",idade=19} {nome="Paula",sexo="F",idade=20} And I used the following code to add…
-
7
votes2
answers11326
viewsCreate HTML table using PHP
Can I create a table to separate this code? Because it’s the only way to align the data I have if($exibe['Nome1'] != NULL) { echo '<p><b>Nome: </b>'.$exibe["Nome1"].'…
-
7
votes3
answers14141
viewsFix first row table
I need to fix the first line of my table always at the top of the page. I have read several questions about this same problem, but I could not solve... My code: <table border="2px"> <tr…
-
7
votes3
answers633
viewsAdd class to a datatable
I’m making changes in a pagina.aspx of a system, however many things are generated through language functions. Since I can’t add a class via code, I’m trying to add via jQuery, but I’m not getting…
-
6
votes1
answer5017
viewsExport formatted R to Excel data
Suppose a data.frame like this: tabela <- structure(list(vendedor = structure(1:4, .Label = c("A", "B", "C", "D"), class = "factor"), Total = c(3300, 440, 1020, 200)), .Names = c("vendedor",…
-
6
votes1
answer1063
viewsHow do I make a checkbox table (Access Level Table) responsive?
I don’t know if anyone has ever come across this type of structure. But here’s the thing, I need to leave this image table below responsive. Has anyone seen anything, knows how, or has any idea how…
-
6
votes1
answer22729
viewsHow do I export table in R in txt or csv?
I wonder how I do to export a generated data table within the R to format txt or csv?
-
6
votes0
answers407
viewsAdd or decrease columns and rows in the table
I have a table where I want to add or decrease new rows and columns, through the button click event, I tried this way, as the code below, but it’s not working very well: This example of how it…
-
6
votes3
answers14621
viewsTable does not break the line
Here’s what I’m using a table from the site: Datatables and here’s the deal: As you can see the text gets all in line which makes it difficult to read because you have to scroll my doubt is how do I…
-
5
votes2
answers30811
viewsTable cell with fixed size
How to set the width of spine of two tables so that one does not have a cell bigger than the other? When I try to create, the cell of the second table always gets bigger than the cell of the first…
-
5
votes3
answers10234
viewsborder-Radius in table does not work CSS
I’m trying to put a Radius border on my table so that the four tips of it are rounded. If I touch the tr/th/td border-Radius it will change the radius of the ballots and not only those of the table,…
-
5
votes2
answers923
viewsReport error while performing UPDATE with SQL
I have a project, in which the administrator can change registered data of tables, but if the query is executed, but no change occurs, I would like to return a message or error, here’s what I have…
-
5
votes1
answer436
viewsHow do I make tables smaller from a data.frame in R?
I have a table in data frame, with 100 animals, but with 500 observations of various characteristics. as I do to have subtabels, with only the animals and the characteristic x, where q should show…
-
5
votes2
answers585
viewsHow to change Checkbox with Dropdownlist onChange in ASP.NET MVC Table?
I am developing a site with ASP.NET MVC and Razor, I have in one of my pages a table with some columns. I have in this table a State column whose has a Checkbox and another column containing a…
-
5
votes1
answer1383
viewsIn HTML how to increase the space between Tds without using cellspacing cellpadding?
My idea is to make a table where it has a spacing between cells, as in the image: But according to the Mozilla documentation for example, it is possible to confirm that the attributes cellspacing=""…
-
4
votes3
answers4195
viewsHow to insert an element between two elements?
Explanation: I have a <div> parent containing two <div> daughters, however I would like to insert a <table> using javascript, between, that is, in the middle of these two…
-
4
votes1
answer5739
viewsIs it possible to generate a table script from an SQL command?
I would like to generate a table creation script, from an SQL command so I could build a program that was able to clone tables. I am using SQL Server 2008 R2 and need to implement a table cloning…
-
4
votes4
answers798
viewsFilter <td> with PHP
I have several <td> <td>Conteúdo</td> <td>Conteúdo</td> <td>Conteúdo</td> <td>Conteúdo</td> <td>Conteúdo</td>…
-
4
votes2
answers45048
viewsCreate dynamic JS table to use in HTML
I’m trying to create a table in Javascript to then use it in a page, but this difficult to accomplish The goal is that the table represents a set of hospital beds that will be managed through the…
-
4
votes2
answers6847
viewsHow to avoid abrupt page breakage when printing an html table
I am developing an html page to be printed later. But when printing I could notice that the break of pages in the middle of tables, are getting strange and abrupt, as can be seen in the following…
-
4
votes2
answers29746
viewsHow to pass data from one table to another SQL
I am doubtful to pass data from one table to another: Example: Table 1 --> Table 2 ---> delete all information from Table 1 I am creating the project in VB.NET and using SQL…
-
4
votes1
answer1006
viewsNew row in table every 3 columns
I have a table that has to have 3 columns per row. The data of the 3 columns I take from the database. My problem is that when I display 3 columns, I want the next results to appear in the bottom…
-
4
votes1
answer575
viewsAdd input and output and subtract
I have this code: $(document).ready(function () { var $entrada = 0, $saida = 0, $total = 0; $.each($("td[name='entrada']"), function() { $entrada += parseFloat($(this).text().replace(",", ".")); });…
-
4
votes1
answer362
viewsUpdate the database correctly
Updated: Link with a video that better exemplifies the situation. I have a big problem, I’m having difficulties to update the database and display the updated data in 2 DataTables different. I have…
-
4
votes1
answer98
viewsHow to put signals between <td>
How I can place signs or images, in the middle of the edges of a table, as in the image?…
-
4
votes3
answers2377
viewsStructure table day and times (schedule type)
I need to create a table that contains days and hours of operation of an establishment, a kind of agenda. This table should represent every day of the week and on each day contain the opening and…
-
4
votes1
answer118
viewsNumber of Columns X performance in tables
I am working with Mysql 10.x in a table that already has 60 columns, but it turns and moves I need to include more columns, I usually dismember in several tables precisely to not create a very large…
-
4
votes2
answers924
viewsIs it possible to insert a select into a td when double-clicking?
Hello I have a dynamic table that works very well, but as the field is an input people can type anything, but wanted to limit this edition using the options of the options, the table I use the…
-
4
votes1
answer114
viewsDOUBT About the use of SELECT and Standard Tables
I have a question as to the advantages of having standardised tables and their forms of use within a SELECT. Suppose the following tables: -------------- | tb_endereco | -------------- | id | | rua…
-
3
votes1
answer149
viewsHow to exchange the text of a cell of a table that is inside a Flowdocument that is in a Richtextbox
I am trying the following code to replace the text in the question situation, where rtb is the richtextbox, .Document is the flowdocument. The text is exchanged in Run (r), but when I open the…
-
3
votes2
answers299
viewsDisplay data in the table
I am trying to present these items in this way: However after several attempts the table always remains so: How should I make the table to get this result? View <h2>Apagar evento</h2>…
-
3
votes1
answer7604
viewsExcel 2007 - Buttons to Create / Remove Rows
I have an excel table with only one row (plus the header) and six columns. The entire sheet is protected except this line. At the end of the table I wanted to have a button (+) that adds a new row,…
-
3
votes3
answers4061
viewsInsert an empty row <tr> at each size range of an html table (With Javascript)
i have an HTML page that works as report page. It has a table that is fed by the database, however when there are many rows in the query then the HTML table gets very large. It turns out that…
-
3
votes1
answer1265
viewsRemoving columns from a <table> via Javascript
My web page is powered by database data and has a report format, with data inserted into an html table. The point is that the database has tables with many columns, which sometimes make the page…
-
3
votes1
answer1370
viewsGet value from a <table> Row if checkbox is checked
I have the following table which is built from a database entity. HTML: <table class="table table-hover" id="produtostab"> <thead> <tr> <th>Descrição</th>…
-
3
votes2
answers4798
viewscreation of tables with margins between them
I want to create a special table but with spacing between each rectangle. What I’ve created is: <table border="1" margin="2"> <tr> <td>Célula 1</td> <td>Célula…
-
3
votes4
answers22158
viewsHow to add row spacing to a table?
I need to draw a table with the following feature: That each row has a margin-bottom of 8px. The red highlight is the distance between the lines. The question is to be able to add only where I wish.…
-
3
votes1
answer771
viewsKeep table with minimum height size
I’m creating a table using the Datatables, but would like to keep a minimum height even when you have at least one record. <table id="example" class="table table-striped table-bordered"…
-
3
votes2
answers7769
viewsLog table using Mysql
How to create a table of log Mysql audit that stores when and what was changed in each record? Mysql provides something that can facilitate this kind of thing?
-
3
votes2
answers637
viewsProblem with table width
Good staff, I have a table like this: The "thead" part where it says Dorsal,Name... etc is a table(Tabela1) and the rest is another table(table2), basically are two tables that I tried to make them…
-
3
votes4
answers16240
viewsHTML -Spacing between tds
Is there any way to give spacing between <td> as in the figure below? NOTE: With spacing only on the right of the <td>.…
-
3
votes1
answer2730
viewsPass data from an HTML table to the ASP.NET MVC controller
I’m trying to pass data from an HTML table in my view to my Controller.The data in this table are added dynamically. A Modal Bootstrap is opened, where the user informs some data, when clicked the…
-
3
votes3
answers381
viewsChrome [v44] - Bug in tables inside a div with overflow
In the new version of Chrome (version 44) the tables are not behaving in the same way as the other versions of it behaved. Expected: Upshot: When resizing the screen, the browser calculates the…
-
3
votes0
answers380
views -
3
votes2
answers570
viewsOptimize Mysql table Insert - Java
I have a loop doing millions of rows sequential Insert in a single Mysql table. I would like to know if it is possible to parallelize Insert or use some resource that increases insertion…
-
3
votes3
answers5944
viewsCSS - Align image inside table with inline css
I need to align an image to the text of the other cell in the table. css is inline. Follow the code: <table> <tbody> <tr> <td style="display: inline-block; width: 50px;…
-
3
votes1
answer785
viewsMount one HTML table from another’s records with Jquery and C#?
I need to compose/generate a new table in html where the records of the new will come from a selection of <input type checkbox> in another table on the same html page displayed in a modal, see…
-
3
votes2
answers9986
viewsSpacing between specified columns in the table without creating <td> a false
I am looking for a solution to leave a predetermined space between columns of my table, without resorting to the use of <td> or <th> phony (without anything written, just with a padding…