As it relates to HTML, tables are used to display data in a tabular fashion.

learn more… | top users | synonyms (3)

0
votes
2answers
28 views

jQuery: Show only <tr>'s that have <td>'s with no content?

I'm trying to create a jQuery toggle button with this usage: EDIT (I think this logic is more concise): Hide only <tr class="todo-list">'s that have <td class="todo-assigned">'s WITH ...
0
votes
1answer
22 views

box shadow using css

i am trying to create a table like the following image : I have also created table like the above except the style as it is above. my table. This is what is my css : .table thead th { ...
-1
votes
1answer
33 views

CSS styling for table

i am trying to populate values to HTML table. I am able to populate values to table but struggling to style the table. Following is the table style i would like to have. Please help me to style my ...
0
votes
2answers
31 views

How to fix td border issue? [closed]

You can see my page at keeptheinternetpure.com I have some nested tables, and I have some images displayed in some cells, but for some reason the border is messed up and the background color extends ...
1
vote
0answers
8 views

Getting a subset of HTML table columns to divide remaining width evently

Is it possible, with an HTML table, to specify a width for the first column, and then tell the remaining columns to divide the rest of the width evenly? So for example, say I've got an HTML table ...
-1
votes
0answers
39 views

I have a table that holds dynamic data, no matter what it does not show all the contents

The table is just a basic layout, the data is displayed from a MySQL database. There are rows in the table that are too wide but there are also rows in the table that are not wide enough. I have ...
-1
votes
1answer
14 views

XSLT transforming to table

Is there any way to output elements in a for loop in XML? <table> <tr> <td><element1></td> <td><element2></td> </tr> <tr> ...
0
votes
5answers
24 views

Html table tr inside td

I am trying to create table in html. I have following design to create. I had added tr inside the td but somehow the table is not created as per the design. Can anyone suggest me how can i achieve ...
0
votes
1answer
48 views

Can CSS place <td> tags one under another like <tr> do

There is a webpage with several tables. One of them has a single tr and >15 tds inside. While there are becoming more and more tds, they start to get out of screen. I want to position them ...
0
votes
5answers
49 views

Disable a table or a submit button when clicked and submit the form

I am creating a dynamic table with a query on my BD, the problem is that I want to disable a button on a table every time I make a submit, I would like to get the form submitted without page load so ...
0
votes
0answers
19 views

Add JQGrid on an Existing Table in JSP

I have a table in my JSP page. It contains more than 100 rows. <table id="grid"> <tr> <th>Inv No</th> <th> Thingy</th> <th> Blank</th> ...
0
votes
4answers
67 views

How to detect a change in any <td> of table, using javascript?

I have a Table whose <td> values varies depending upon the inputs given in form, I am using Tangle to make a reactive document. Is it posible to detect if the value of <td>changes to any ...
1
vote
3answers
42 views

How to add HtmlTable to HtmlTableRow?

I have a HtmlTable (parent) and want to nest another HtmlTable into parent's HtmlTableRow. I tried this code: HtmlTable parent=new HtmlTable(); HtmlTableRow row = new HtmlTableRow(); HtmlTable child ...
0
votes
1answer
20 views

Div not re-positioning footer on dynamic table load

I am attempting to have a fixed header and footer around a div that is scrollable. The footer does not re-position when the data is loaded to the table rows if I set the table Div to absolute (I get ...
1
vote
3answers
43 views

HTML Table does not use full screen

Situation: I'm writing an html page and I added a head and body. In my body I have 3 columns, left, main and right. For this question only the main is important. I wanted to make a table with text ...
0
votes
1answer
33 views

HTML::TableExtract - passing an expression for headers

I have a subroutine that is called through another script to read the HTML file. Below is the code. sub read_html { $data=`cat "$_[0]"`; use HTML::TableExtract; print "CALLING read_html ...
0
votes
2answers
35 views

How to detect negative values in a <td> of table in html?

I have a table in html, I am using Tangle framework to make the values look dynamic of that table. What I want is to place a check on a specific <td> if its numeric value ever gets negative, the ...
4
votes
4answers
46 views

Add class to td with colspan=2

I want to add a Class to every td which has colspan=2: <div class="content"> <table> <tr> <td>zuppa di zucchini</td> <td>€ ...
0
votes
4answers
21 views

Two HTML table under each other

So I have two html table under each other Each table has two columns The problem that I want each column in the below table to be exactly under the similar column from the above column |Table 1| ...
0
votes
3answers
22 views

SQL query create table with headings

Currently I am creating a HTML table with data from one of my SQL tables. However I want to put headings for each column (note: I don't want to use the database headings). How can I do this? Below is ...
0
votes
4answers
32 views

Remove a row from Html table based on condition

I have a html table <TABLE id="dlStdFeature" Width="300" Runat="server" CellSpacing="0" CellPadding="0"> <TR> <TD id="stdfeaturetd" vAlign="top" width="350" ...
0
votes
0answers
40 views

VBA IE: Click on Submit Button when Innertext matched

<td class="grdHeaderCenter">Submit Date</td> <td class="grdHeaderCenter">Total Enrollment</td> <td class="grdHeaderCenter">Downloadable Enrollments</td> ...
0
votes
0answers
6 views

TD width keeps expanding?

I am on the last stretch of completing a client's website, but I have one last problem. The whole website is a table(yeah I know, but I can't redesign the whole website), and I need to change the ...
0
votes
1answer
18 views

Table colspan & rowspan

I have a little problem with the colspan and rowspan. I'm trying to make the following table : But I'm stuck at the second subtitle with the row span: <table border="1"> ...
-1
votes
4answers
36 views

how to link part of a table with a link?

I have a table with many td's inside a li. the first td is a checkbox , so I want to link all td's with a link excluding the td of the checkbox like the following: <ul> <li> ...
0
votes
2answers
73 views

View doesn't update on observablearray.remove(item) in knockout without call to applyBindings

I am learning to use MVC 4/MVVM/Knockout for a web-managed data project. I have been running into a problem updating the View when using the remove function on an observable array. The updates ...
0
votes
3answers
48 views

insert value from sql database to html table

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta ...
2
votes
6answers
72 views

HTML Table with vertical rows

How do I make vertical tables in HTML? By vertical, I mean the rows will be vertical with table headers on the left. I also need it the way so I can access these rows (in this case vertical) as in ...
0
votes
2answers
62 views

jQuery - Apply styling to all vertical TD in table on hover

If you hover over a price, you will notice the price and 1st child of .catTr td is highlighted. None of the others are. The goal is to create a very clear grid of what is being selected. How can I ...
0
votes
0answers
10 views

add more dynamic listing

hey i created the following script for a dynamic listing: <?php function getTransactionStatusImagePath($transactionId) { $states = array('schwarz', 'rot', 'blau'); $path = ''; foreach ($states ...
0
votes
1answer
17 views

Discovering the depth and count of tables on an HTML page with Perl

I have local copies of numerous downloaded web-pages. The pages almost certainly have only a few different types of table layouts, but before looking to extract data, I first want to print out the ...
0
votes
1answer
42 views

issues in creating css image gallery

Here is my JsFiddle i am new to css. i am trying to create an image gallery. i designed the layout using table tr td tag. here is my HTML code: <div class="gallery"> <table> ...
0
votes
1answer
31 views

Jsoup in Android, extracting the “middle word” in text from an element after title=

Im making an Android App and i need help with targeting a specific text in an Element This is where im at: Elements bookietemp = item.getElementsByClass("name"); String bookie1 = ...
0
votes
1answer
26 views

Why can't I target an image in a table with jQuery?

The idea is to show some extra content in TDs on hover, as well as increase the size of images in the rest of the row at the same time without breaking image proportions. I'm using this JS: ...
2
votes
1answer
59 views

How do I properly apply a border-radius to a table?

I've long used the simple method for applying border-radius to tables, which is looking for each corner cell and applying the radius for that corner to each of those cells, like so: table > ...
-1
votes
3answers
34 views

Click on td not working

i have a table created dynamically and assigned a click event, but this event don't work on all cells, only on a fixed row. What's my mistake, pls help me. here is my code: <!DOCTYPE html> ...
0
votes
3answers
101 views

jQuery datatable ignores rows with colspan

I have a table that looks like this: EDITED: <table id="results"> <thead> <tr> <th>ID</th> <th>NAME</th> ...
0
votes
0answers
32 views

Responsive Tables - Allow one row to take up multiple lines

Currently, on a desktop my table looks like this: __________________________ | FoobarFoo | Foo | Bar | | BarfooBar | Foo | Bar | --------------------------- When a user is browsing from a small ...
0
votes
2answers
65 views

colspan doesn't accept decimal numbers. How do I specify the span?

<table> <thead> <th colspan="4">Liquor Store Blues</th> </thead> <tbody> <tr> <td colspan="4">Meow</td> ...
0
votes
1answer
76 views

How to move to the next td and check for Css class?

I am creating a Connect 4 game and have created a table of td elements where each td has a row and col value, i.e. (1,2). Here: for(var i = 0; i < rows; i++) { ...
0
votes
2answers
85 views

HTA with dynamically generated HTML Tables with onclick faults

Right. I need help here. I have a HTA, and it runs completely fine. UNTIL I do the following to my code. I am working with VBScript. Code below: <Script language="vbscript"> Sub ...
0
votes
1answer
66 views

Get a clicked HTML Cell Value in VBScript

I have been searching for nearly an hour now and still no closer to an answer. Basically - I want to click on a HTML Cell, and get the current value of that HTML cell, and assign that value to a ...
1
vote
2answers
47 views

Calculate and set colspan value dynamically

I have got a table with redundant data in cells. [Left table] I need to join them into one cell. [Right table] Structure of table: <table> <tr> <td ...
1
vote
2answers
47 views

using rowspan with array output to table in php

I'm looking to modify a table on a page to include merged rows. Here is the php code that deals with the output from a mysql db: ######## PRINT OUT TABLE WITH YEARS AND OFFICES PLUS NAMES IN ...
0
votes
1answer
56 views

Display XML results in HTML table

I need to display the XML data from this URL: http://api.redfoundry.com/RFBase.ashx?type=get&name=b39d11d5-505f-453e-bcfc-9d3b19dd8a61&key=2469F6F56F61976FB51FDEC878E93555 into a HTML table ...
0
votes
3answers
67 views

Select inputs in first row of table

I have page that I'm working on that contains a table with a header row, several rows of text inputs, and a total row. When a user enters numbers in the inputs, the sum of each column is calculated in ...
1
vote
2answers
65 views

How to find 2nd td in html using xpath

I have 2 occourances of same td in 2 different tables. I am able to get the value 'Yes' for the 1st one using this: //h:td[1][*[contains(.,'Loudspeaker')]]/../h:td[last()]/text() but not getting ...
2
votes
2answers
189 views

How to show diff of two html tables using javascript?

I have a set of tabular data that has changed. Now i have both the data rendered side by side in two html tables. Now I want to highlight the columns that have changed just like in svn file diff. I ...
0
votes
1answer
68 views

How to create dynamic html table in asp.net MVC (analog HtmlTable in webforms)

How to create dynamic table with the complex structure and different styles of cells? I have a lot of code such as: in Controller: string styleTag = "class=\"someCssStyle\""; ViewBag.htmlRawName1 ...
0
votes
1answer
72 views

Outlook 2007 Vertical Align two images in a td without support for css vertical-align: middle

Building an html email; I have two img tags in 1 td, one image (right side one) has a fixed height and the left one has a variable height. I want to be able to keep the images vertically aligned in ...

1 2 3 4 5 22