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
-
3
votes1
answer2783
viewsCSS - Format a table
I have a table that has a very complex header and I’m not being able to style, the table rows have a higher height in the fields that have 2 lines, how can I fix this ? Follow the link from Jsfiddle…
-
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…
-
3
votes0
answers759
viewsI need to put an excel table in wordpress
I have a small table in Excel, where there are some calculations, formulas, actually this table is a simulator of my client’s fees and he wants to put on the site :(. Is there a plugin for this? Any…
-
3
votes2
answers2419
viewsPrimary key in associative table(Many for many)
Good night. I have the following question in relation N to N. Foreign keys become a primary key composed of the associative table. Correct? Does this guarantee that there is no repetition between…
-
3
votes1
answer3890
viewsHow to make the HTML table inside another table occupy the entire screen?
I have an HTML table with 3 columns and 3 lines and for each cell of this table I have another HTML table with 3 columns and 2 lines and I’m trying to get her to uniformly occupy the entire screen.…
-
3
votes2
answers117
viewsturn numbers into relative frequency
Dear, I have the following table with absolute numbers: structure( list( X = c("Ver_suj", "Ver_obj", "Substantivo", "Adjetivo" ), Bolsonaro = c(59L, 299L, 988L, 653L), Ciro = c(188L, 242L, 128L,…
-
3
votes2
answers117
viewsI could not resolve the error: The condition has length > 1 and only the first element will be used
I know there are other questions about this mistake, but since I’m a beginner they didn’t help me solve my specific problem. I am working on the following date.frame: structure(list(Dates =…
-
3
votes2
answers25262
viewsRemove edge that separates columns from a table
Good evening! I’m trying to remove the edge that separates the columns from a table but doesn’t work. The Table is this: <table border="0"> <td> <tr> <img…
-
3
votes1
answer1345
viewsHow to keep only Dataframe-specific lines?
I have a code that enters a site, fills in a form and pulls a table, however, I want to delete some rows from this table that I don’t need. Let’s go to the code: #library's require(RCurl)…
-
3
votes3
answers4171
viewsHow to put columns of a table all the same size?
Temperature Precipitation Wind Atmospheric Pressure Second Tuesday Fourth Fifth Sixth Saturday Domingo What I wanted was to get all the columns to be the same size regardless of the name of the day…
-
3
votes3
answers66
viewsBy which means one can remove the dynamic cell inserted in the HTML table
Script var opt = document; function inserirLinha(id) { var newRow = opt.createElement('tr'); newRow.insertCell(0).innerHTML = '<input type="button" value="X" onclick="removeLinha(this)" />';…
-
3
votes2
answers5887
viewsHow do I make this table mobile responsive using only html programming?
The code of the site on the computer is ok, but in mobilie the columns are very thin and with very bad visibility, I tried to solve in several ways the responsibility on the mobile and only managed…
-
3
votes1
answer46
viewsJunction of tables
I got three tables a call CRM_PROCESSO, another call CRM_PROCESSO_VARIAVEL and the last call CRM_PROCESSO_ATIVIDADE, both have the variable idprocesso in common. What I need is for command to bring…
-
3
votes1
answer99
viewsError changing table in Postgresql. How do I change the type of an int column to the timestamp type?
I’m studying the Postgresql comic book for a recent book I acquired. When trying to change a tebela based on the command I learned in the book an error occurred, I used exactly the same command…
-
3
votes0
answers122
viewsHow to add/remove shadows from an element with "position: Sticky" as scrolled?
I made a table with the header and the last fixed column using position: sticky. To give an impression that it is above other columns/rows, I used box-shadow, but it gets weird to leave the…
-
2
votes1
answer1004
viewsChanging td color without updating the page with ajax
How to solve this problem, I saw that there are solutions in ajax but I couldn’t develop, what I need is to change the color of td of a table without having to refresh the page, change the color of…
-
2
votes3
answers54929
viewsCreate HTML table and display data using PHP
I’d like to see if anyone can help me with this problem of creating an HTML table in php. <?php <p><b>Alvará: </b></p> <p>Alvará Numero:…
-
2
votes1
answer3266
viewsCall javascript function
I have a VB application that builds HTML pages powered by database data. So I can issue reports by inserting the data into an HTML table. It happens, that sometimes the table becomes too big to be…
-
2
votes1
answer792
views -
2
votes1
answer336
viewsChange font color of a cell Table with ajax
Let’s say I have the following table: I have an option that I click to activate the users selected by the checkbox. Everything already working and even occurs the activation of users. I am using…
-
2
votes2
answers922
viewsHow to bypass table tags that are inside the foreach in PHP and HTML
I need to assemble a schedule of days and events. When one of the days of the event is equal to the day of the table, it has to appear on the screen in the correct place. I’m already being able to…
-
2
votes1
answer4330
viewsBreak table cells/td in html
I have a dynamically generated page with php/sql, in it exists a tabela with dynamic data, the tabela is inside a div that limits and organizes the ends and size of the page. But it is not being…
-
2
votes1
answer265
viewsHow to place a Mousecliked event on a table using Javafx
I’m trying to put a Mousecliked event on my table but gives this error: java.lang.IllegalArgumentException: argument type mismatch My method is like this: private void…
-
2
votes1
answer94
viewsVariable table
I don’t know if it’s possible, but I would like to create a table that according to my data would create the number of rows and columns, and then it would be possible for me to enter values in those…
-
2
votes4
answers306
viewsHow to link to table?
I have a Table in PHP and in each tr I need a link <?php $con = mysqli_connect("localhost","root","", "saber"); mysqli_set_charset($con,"utf8"); $result = mysqli_query($con,"select id,nome,vista…
-
2
votes1
answer4594
viewsHow to create a table in MATLAB?
I’m doing a job I want to create the following table: I have tried several commands like table and readtable and always returns me the following message : Undefined function 'readtable' for input…
-
2
votes2
answers1229
viewsScroll through a table (grid) Razor MVC
I have a table that is filled by a Model in HTML Razor in a partialView, a field of that table I left as editable using the @Html.TextBoxFor. After the user edit this field need to update in DB, but…
-
2
votes1
answer1459
viewsHow to force the maximum table width?
Can you set the width to be occupied by the table? forcing it to make a line break and continue when it reaches that maximum width?
-
2
votes1
answer1394
viewsCreate Task Mysql Database
I need to create a JOB (known in sqlserver) in a mysql database, first I would like to know if there is such a possibility, and if there is one, what would be the syntax? I have a Table that holds a…
-
2
votes0
answers299
viewsSelect from a table within a cell of another table
In the SQL SERVER 2012 it is possible to construct a table that in one of its columns contains the result of another table? The master key would be the reference.…
-
2
votes2
answers1070
viewsHow to arrange the table so that photo and information are on the same line?
I need the image and property information contained in the table to be at the same time, but I don’t know how to fix. They follow the pictures of how it is and how I wanted: Follows the code:…
-
2
votes2
answers1070
viewsHow to arrange the table so that photo and information are on the same line?
I need the image and property information contained in the table to be at the same time, but I don’t know how to fix. They follow the pictures of how it is and how I wanted: Follows the code:…
-
2
votes2
answers60
viewsInsert Rows at the top of the table
I have the following problem, I created a form in which the value that the user has to write goes to the top of the table, leaving the oldest down, or make my SELECT can select only the last 10…
-
2
votes2
answers3830
viewsInsert data from one table into another
Guys, I’ve been racking my brain with this problem for a while now and I wanted your help. I have a code that inserts data into the table venda: <?php if(isset($_POST['send'])){ $venda =…
-
2
votes1
answer573
viewsColumn Junction: HTML5 and Angular
Guys, I’m wondering how I can make this junction with the Angularjs? I saw that has the ng-repeat-start and the end, but I couldn’t implement.…
-
2
votes1
answer38
viewsTablerow added via program is not bringing all fields!
I’m trying to make a ScrollView - TableLayout - TableRow via program, but using an XML Layout as the internal database of Tablerows. It turns out that whenever I try to add the text of the last…
-
2
votes0
answers227
viewsUpdate a Repeater after inserting a new row in the Table?
Good morning, you guys! I have a table that is populated with a Repeater. This table has a filter, which is programmed all via javascript from a ready Layout. After adding a new value to the table…
-
2
votes2
answers1598
viewsHow do Postgres create a file to populate a bank?
I have a database in POSTGRESQL populated , I wanted to know if there is a command SQL that returns an aqruivo that had the following command for all existing tables: INSERT INTO aluno(id , nome,…
-
2
votes2
answers61
viewsDatabase overloads while deleting lines with relationships?
Good afternoon to all! I have a question, and I’d like to get some opinions. I’m building a system in php + Larable. I have relationships between tables, for ex: Users->Roles. They are supposed…
php database laravel table relationshipasked 8 years, 6 months ago Fernando Herique Rubim Pioli 285 -
2
votes1
answer227
views -
2
votes1
answer1977
viewsHow to put Scroll in table inside div with width 100%?
The example shows a div with scroll horizontally, but would like the table along with the scroll div to adjust 100% to the screen size. .div { border: solid; display: inline-block; width: 300px;…
-
2
votes4
answers1194
viewsContents of a JSON in a table cell
How do I get the result of a json and play directly inside a td of my table? It’s right in the form of getJSON? <script type = "text/javascript" language = "javascript">…
-
2
votes2
answers55
viewsCustom border for certain table columns
So, I have a page with a table that compares an amount of predicted items with an amount of items performed month by month. That’s the way it is these days: I was asked to put a line after each…
-
2
votes2
answers1174
viewsChange the color of a cell according to the value
I have a page with a table that shows information on the number of items expected to be performed and the number of items that were actually performed at the end of each month. I was asked that, in…
-
2
votes2
answers1469
viewsVertical text in table
I’m playing a pdf: However, I need to place this vertical text which is in the image,I wanted to know how to leave it upright, in the same format as the image using table only, and not use div.…
-
2
votes0
answers73
viewstable change to your call in . moon?
have this table below tabela = { ["Maquina"] = { {name = "susu", level = 600}, {name = "camel", level = 600}, {name = "juju", level = 600}, }, ["bruno"] = { {name = "fada", level = 600}, {name =…
-
2
votes1
answer817
viewsHow do I make the relationship many for many in Ruby on Rails with has and belongs to Many?
I have a table system and a table category, a system has many categories and a category has several systems, I wanted to use the has_and_belongs_to_many option of Rails (for being a simple relation…
-
2
votes1
answer237
viewsMedia Queries Does Not Work Informed Measures
Good afternoon! I am working the first time with @media queries, I read a little I saw some examples but when doing my project I saw that it is not using the settings according to the measure…
-
2
votes2
answers1801
viewsHow to join two csv files in R?
my problem is the following: I have two data files in csv format with same number of columns and same column names (see below). I ask to read the files as follows: > dados_1 <-…
-
2
votes2
answers669
viewsTables with vertical and horizontal scroll
I set up a table with scroll horizontal and vertical from this original http://jsfiddle.net/k5k7vtwu/: document.querySelector('.ux-data-table').onscroll = function (e) { // called when the window is…