table

How do I determine when a table is going to span multiple pages with iTextSharp?

I am building a table that spans multiple pages of my PDF. I would like the column header of the table to appear as the first row on each page. Is there some way that I can detect when the page is breaking and insert the column headers rather than the next data row? ...

What is the fastest way to render an html table?

i have seen comments on using table-layout: fixed. I have seen comments on defining col widths upfront and also lots of comments on avoiding table especially nested tables and use some css solution instead of tables. Is there an agreed documented solution for rendering an html table as fast as possible? Also, if there is an alternativ...

why do you need to specify a html table width and the width of the columns

what is the default behavior of browsers if the columns dont add up to the table width. ...

HTML tables not working in Internet Explorer 7

I have a HTML table where I: Include explicit table width. Include explicit width on the first <td> row. I have images in the columns but I include height and width tags on the images so the browser should know in advance the sizing. Using <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtm...

Construct a datatable from the REST response received from quering table entities in azure

I query the Azure tables using REST API and the response is transformed to xmldocument. Is there an easy way to convert this xmldocument to datatable without manually parsing the xml in code? I would know the schema for the table/entity only at runtime. Alternatively, what would be the best way to display the azure table data in a grid ...

SQL Count(*) on multiple tables

Hi all, I am writing a horse racing web app and i have a stats page. What i am trying to do is show how many winners there are from each year. Currently i have this: SELECT `Horse Number`, Count(*) AS `Total Winners` FROM `races`.`2009` WHERE `Win $`>0 GROUP BY `Horse Number` ORDER BY Count(*) DESC; It works like a charm and return...

HTML CSS How to stop a table to put the content after it on a new line?

I have a table followed by an anchor tag. I want the anchor tag not to move to next line after the table. What are the options? ...

Is it possible to update the name of each checkbox in an html table using jquery

i have a html table where one of the columns is a set of checkboxes There are three checkboxes in each row. The original names of the checkboxes are Row 1: person[0].Choices (value=1 name= person[0].Choices value=2 person[0].Choices, etc. .) Row 2: person[1].Choices(value=1 name= person[1].Choices value=2 person[1].Choices, etc . ...

jQuery: How to reference dynamic form elements and keep the previous elements working?

I've done a lot of searching on this, so please forgive me if I've missed it, but this seems to be pretty unique. I've got a table in a form that I need rows (and fields) to be dynamically added, and then I need jQuery to manipulate some of those fields, and then they must be passed off to PHP to be dumped into a MySQL database. I've g...

how to get current row of input control like textbox within html table

i am getting all checkboxes that are in an html table using this code and i need to find the current row in the table from the current checkbox. var checkboxes = $("form :checkbox"); for (i = 0; i <= checkboxes.length; i++) { var checkbox = checkboxes[i]; ///need to get current r...

Table cell stretching

I have two columns in my table with equal width(50%, 50%). I am showing search results URL in them. For big urls the columns are stretching and destroying the layout. Any suggestion to the problem? Thanks & Regards, Subrat. ...

How to improve speed of dynamic HTML table creation in Firefox?

I am rendering a small table(maybe 10-12 cells) which is updated constantly. I want it to be quick. Chrome does the work very fast, but i am having problems on Firefox/IE. Any suggestions for faster rendering? Thanks ...

Structurally and visually organising DBs and tables in SSMS

Hi Within the next few weeks I plan to introduce SQL server to an office that is in dire need of a proper data server. Currently there is a heavy reliance on loose Excel and Access file (supplemented with frighteningly large amount of impenetrable VB code to do data manipulations) strewn all over the internal network. We need SQL serve...

Combine two tables in SQLite

I have two tables, ta and tb: ta: key col1 -------- k1 a k2 c tb: key col2 ------- k2 cc k3 ee They connected by "key". I want to know how can I get a table, tc, like: key col1 col2 ------------- k1 a k2 c cc k3 ee Is there a easy method instead of inserting every record? They are one million records of tables so ...

creating procedure/tables from java files

hi, i am having the script of tables in normal txt files also i have scripts for procedures and functions. Now, i want to just read that file from java and i want op fire that string (script) on DB.. is it possible.. i have written statements for all DML queries, but here i want to use DDL queries from Java.. can any one help me.. ...

WPF FlowDocument: force calculation of height etc. "off screen"

My target: a DocumentPaginator which takes a FlowDocument with a table, which splits the table to fit the pagesize and repeat the header/footer (special tagged TableRowGroups) on every page. For splitting the table I have to know the heights of its rows. While building the FlowDocument-table by code, the height/width of the TableRows a...

unable to remove row from table created by jquery

hi, i am creating a table based on result from servlet, which contains a checkbox , when the cheked property of checkbox is true there will be one button in the bottom of the table which calls for a remove function, which removes that particular row from table, this function is working when the table is created inside jsp using server ta...

Best structure for "Orders" table having multiple Items per order number.

What is the best structure for an Orders table having OrderNumber, ItemNumber and CustID that allows for 1 or more item numbers for each order number? ...

Fill Databasegrid doesn't occure when envoked automatically

In the following Form-code I have a FrmPrintKasTicket witch i start form another form. This Form should print a document based on information in a SQL database. When I use a button on this form (and remove the "PrintKasTicket();" under FrmKasTicket_Reload) it actually prints. But when I envoke the printKasTicket-methode when the Frm is ...

for a html table, is there a way to have striped rows as well as a seperate color for the first column

I have a matrix that i am showing in html table. I have my header row (th) but i am trying to see if there is such things as header column that i can style similar to header row. Right now i am using a class=odd and class=even on my TR in my Tbody so i am not sure if there is a way to have a column overwrite this row css logic. ...