column

CSS: How to set table column width for dynamic drop down list

Hey, I have a table with a dynamic drop down list. The width of the drop down will change depending on its content. I would like the table column to be the same as the width of the drop down. If I set a width less than the size of the dropdown IE seems make the column bigger than the drop down whilst wrapping the column title it inse...

JTable Column resize isn't working

table.getTableHeader().setResizingAllowed(false); column = table.getColumn(columns[0]); column.setWidth(25); column = table.getColumn(columns[1]); column.setWidth(225); column = table.getColumn(columns[2]); column.setWidth(50); table.doLayout() This refuses to set the columns to their specified widths. Any reason why? ...

Column width of a DataGrid in a Windows Mobile Application

I'm having problems trying to adjust the width of a column of a datagrid. I used the answer posted here, but I can't solve it. I'm using a List of objects as a datasource. In this simple example, I have just created a smart device application, and just added a datagrid. Then my code is this one: public Form1() { ...

Changing values of a column in a full DataTable?

Hi I Fill my DataTable which has 3 columns(col1 int, col2 int , col3 string). Now, I wanna to change all values of col2 with adding for example 3 number to them.... Any suggestion please. ...

SQL select statement that shows non-existant column?

Hi, If I have a application that accepts a query that returns 4 columns, 1 of which is an extra info column that can be empty, and the column doesn't exist in the database I am using how could I 'create' it so that the data retrieved using the query always has 4 columns, 1 nbeing empty? ...

jQuery remove HTML table column

Hello. I have a HTML table like this: <table border="1"> <tbody> <tr> <td><a href="#" class="delete">DELETE ROW</a>COL 1</td> <td><a href="#" class="delete">DELETE COL</a>COL 2</td> <td><a href="#" class="delete">DELETE COL</a>COL 3</td> <td><a href="#" class="delete">DELETE COL</a>COL 4</td>...

Left and right column problems

When my page content exceeds the minimum height of the div I want both columns to expand with it. At the moment when the left div exceeds the right, there's white space underneath the right div, but I want the right background to repeat with the size of the left. http://thinkingparentsforum.prettypollution.com/blog Any ideas? ...

Customize the sorting in datagrid in flex

I have a column with 4 fields named : a> Main, b> Forward c> Back d> Link, if I use pre-defined sorting of datagrid with the column names which will be alphabetically, then the order is c>Back b>Forward d> Link a> Main. But, I do not want to sort based on the alphabets. I prefer to sort by names of the column fields. i.e. somehow give pr...

jQuery add HTML table column

Hello, I have a HTML table like this: <table border="1"> <tbody> <tr> <td><a href="#" class="delete">DELETE ROW</a>COL 1</td> <td><a href="#" class="delete">DELETE COL</a>COL 2</td> <td><a href="#" class="delete">DELETE COL</a>COL 3</td> <td><a href="#" class="delete">DELETE CO...

how to get a column of recordset in an arraylist ?

how to get a column of recordset in an arraylist ?? using vb.net .. please help me out .. ...

How to use C# to get column's description of Sql Server 2005?

I can use " Microsoft.SqlServer.Management.Smo.Table " in C# to get a table columns of a Sql Server 2005 database. I have got the column.Name, but how can I get the column's Description in C#? I have saw the link: http://stackoverflow.com/questions/887370/sql-server-extract-table-meta-data-description-fields-and-their-data-types But ...

Identifying indentity column?

I have found out how to determine what columns are are primary key column of a given table by using this query: SELECT CONSTRAINT_NAME, COLUMN_NAME FROM INFORMATION_SCHEMA.CONSTRAINT_COLUMN_USAGE WHERE TABLE_NAME='tablename_here' AND CONSTRAINT_NAME LIKE 'PK_%' I can find out what the identity seed and increment is by using this ...

Sharepoint lookup column custimization

I'm developing a customized document library in the SharePoint 2007 environment. What I'm doing is creating a content type with multiple columns of information related to the document. Users will use this content type to upload new documents rather than the standard new document functionality. One of my columns in this content type is...

Overlapping Columns with IE7

I'm really having a hard time with IE7 as it is making part of my page fluid where it should be fixed. Works fine in every other browser but IE. Here is the link... . If you shrink the window you will see how the page gets all skewed. Here is the css used to control the 2 columns, left_body being the left content and right_body the...

Sort dead hyperlinks in Excel with VBA?

Hi All The title says it: I have an excel Sheet with an column full of hyperlinks. Now I want that an VBA Script checks which hyperlinks are dead or work and makes an entry into the next columns either with the text 404 Error or active. Hopefully someone can help me because I am not really good at VB. EDIT: I found @ http://www.utte...

Why is styling table columns not allowed?

W3 specifies that only four CSS rules are allowed for table columns (with the <col> element) - border, background, width and visibility. Does anyone know the reasons behind this decision? If you can have borders and backgrounds, why not fonts and colours? ...

what is a good way to convert a vector mock up into html?

I'm am trying to make a three column layout for a website from an inkscape mockup that I made. The problem is that I am more of an artist that a programer, so I know only the basics. I will take any suggestions. Thanks! ...

WPF How to bind GridView column width in code?

I need to bind width property of the GridView column that is created dynamically in code. Since GridViewColumn object has no SetBinding method, how should I do this? Thanks in advance. ...

secondary index on column store dbs

Hi, Is there any column store database that supports secondary index ? I know HBase does, but it's not there yet. Haggai. ...

Increase in field length will result in data loss ?

Hi, If we increase the field width [say varchar(7) to varchar(20)] will it result in data loss? This is to be done in Firebird 1.5 database. Thank you. ...