Tagged Questions
The column-width tag has no wiki summary.
11
votes
5answers
7k views
How can I set a <td> width to visually truncate its displayed contents?
I'm trying to set a column width of a table, which works fine until it gets to the point where child elements would be visually truncated ... then it won't size any smaller. ("visually ...
6
votes
2answers
7k views
CSS: How to set the table column width constant regardless of the amount of text in its cells?
In my table I set the width of the first cell in a column to be 100px.
However, when the text in one of the cell in this column is loo long, the width of the column becomes more than 100px. How could ...
6
votes
3answers
3k views
How do I databind a ColumnDefinition's Width or RowDefinition's Height?
Under the View-Model-ViewModel pattern for WPF, I am trying to databind the Heights and Widths of various definitions for grid controls, so I can store the values the user sets them to after using a ...
5
votes
3answers
427 views
Common coding style for Python?
I'm pretty new to Python, and I want to develop my first serious open source project. I want to ask what is the common coding style for python projects. I'll put also what I'm doing right now.
1.- ...
4
votes
2answers
3k views
automatically calculating column width in JTable
What's the preferred way of this (based on header & contents width I believe)?
3
votes
1answer
408 views
.NET ListView, max number of characters, or maximum column width? Possible to override/expand?
I have a .NET ListView control in which I display stack traces. I used the ListView since I needed to manipulate the font/colors of certain lines.
However, it seems there is some kind of maximum ...
3
votes
1answer
11k views
WPF DataGrid column widths and reordering
I have a DataGrid defined as
<wpftoolkit:DataGrid
x:Name="AccountsDataGrid"
AutoGenerateColumns="False"
ItemsSource="{Binding Path=Accounts}"
...
3
votes
2answers
985 views
CSS to make a table column take up as much room as possible, and other cols as little
I need to layout a html datatable with CSS.
The actual content of the table can differ, but there is always one main column and 2 or more other columns. I'd like to make the main column take up as ...
2
votes
4answers
4k views
chrome vs FF/IE/Opera in calculating table cell width ? (table-layout:fixed)
I've searched now for almost half a day... but I couldn't find out why chrome6/7 seems to be the only browser in comparison to IE8/FF3.6/Opera that does not add the padding to the specified width of ...
2
votes
1answer
2k views
C# iTextSharp AutoAdjust column widths
Is there a way to adjust columnwidth automatically to fit as much content in them as they can (sort of like double click a column width is a grid control).
At the moment I am setting them as ...
2
votes
1answer
278 views
How can I keep columns of a JTable from resizing when I resize the JFrame?
This code puts a JTable into a JFrame (sole component of the whole UI):
JFrame frame = new JFrame( "Title");
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
JTable table = ...
2
votes
2answers
1k views
Actual width of a text/caption in Delphi 7
I believe this question was already asked, but it was in Java, so I couldn't understand the solution.
Here is my problem, I want to know actual length of the text in pixels (note that various ...
2
votes
3answers
5k views
How to resize table columns width from JavaScript
I have a problem with javascript.
I have a list of table cells stored at TabList.
I want to find the maximum width, and then set this width to all of them.
A sample code is here, but the setting of ...
2
votes
3answers
292 views
What is the best way to implement 'Excel like column sizing' for an HTML table?
Basically, I want to allow the user to resize columns in an HTML table, using the same method as you would in Excel. Drag the space between columns and size.
I did some research on this last year, ...
1
vote
0answers
175 views
Doctype or padding - Chrome doesn't display the table like FF, IE, Opera
My problem looks similar to the question I have found here:
chrome vs FF/IE/Opera in calculating table cell width ? (table-layout:fixed)
I simplified the page. The page contains a table, that looks ...
1
vote
1answer
105 views
Resizing GridView columns after making it visible
The setup:
ListView with GridView that is initially hidden when the window is loaded, and then made visible upon a certain user action.
The aim:
Be able to set relative width of GridView's columns.
...
1
vote
1answer
150 views
how to increase sqlplus column output length?
I have some queries to find out the ddl of some objects from a schema.
I am getting the result columns are truncated in middle of the queries.
How can I increase the with of the column?
I tried with ...
1
vote
0answers
69 views
Guidelines with different colors in Visual Studio 2010
I've set a registry key with the value RGB(255,0,0) 100, 120 which results in two red lines. But I'd like to have the first line in a different color.
Is it possible to configure different colors for ...
1
vote
1answer
49 views
PHP exec() results in stripped lines/columns
I execute shell-scripts via PHP's exec() function. The result is then displayed. Executing dmesg works like a charm, however executing ps axu outputs lines that are cut at 80 characters, like the ...
1
vote
1answer
93 views
WPF user controlled grid column width
I've got a grid, currently with three columns. The first column contains a WrapPanel. The second column takes up whatever space is left, and the third column is a fixed width.
I want the user to ...
1
vote
2answers
187 views
XSL-FO overflows width when flowing from page-master with wide region-body to narrow (including column-width changes) in Apache FOP and XMLSpy
I'm using XSL-FO (Formatting Objects) in XMLSpy with Apache FOP.
When I flow content from a first page having a simple-page-master with a wide region-body onto a second (rest) page having a narrow ...
1
vote
3answers
744 views
Word-wrapping a long table cell while maintaining dynamic widths in others
I have a table which has a long line in one of its cells. I need the long line to be split so that it doesn't cause the table to be more than 100% wide. I found that by adding table-layout: fixed and ...
1
vote
1answer
3k views
How to set width in Ext.grid.ColumnModel in percentage terms?
How to set width in Ext.grid.ColumnModel in percentage terms?
1
vote
1answer
391 views
Compute column widths in a HTML-like manner (based on cell contents)
I have a grid of data that I want to export to RTF, PDF etc. using various (and not perfect) PHP converters/generators.
What I am missing most is the HTML table automatic adjustment of column widths ...
1
vote
2answers
266 views
ColumnDefinition doesn't expand until resize
I have a grid where one columnwidth is defined as *.
The other columns are defined as Auto.
The column with the *-definition contains a usercontrol derived from Panel that also implements IScrollInfo.
...
1
vote
5answers
2k views
How do I make a TDBGrid's columns fit the grid's width?
I've got a TDBGrid with predefined columns, and I just can't get the width right. I can mess with the Width property of the columns in the Form Designer and get the width to look just right at design ...
1
vote
2answers
1k views
Horizontal scrollbar past the min-width point
HTML:
<div id="mcolWrapper">
<div id="mcol">
<div class="wrapper">
content
</div>
</div>
</div>
<div id="lcol">
<div ...
1
vote
2answers
534 views
How do you prevent a user from resizing the column width of a clistctrl (report view)?
How do you prevent a user from resizing the column width of a clistctrl (report view)?
1
vote
4answers
8k views
Flex 3 DataGrid Column Width Problem
I'm pulling xml data to determine which columns are visible, and the widths of each column. My datagrid's width can change sinces its on one side of a HDividedBox. The visibility part works, but ...
1
vote
3answers
4k views
Flex DataGrid Column Width
In my flex app I store the widths and visiblility of columns in an xml file. When the app loads it reads from the xml file and sets he columns values as applicable:
for(i = 0; i < ...
1
vote
4answers
9k views
Dynamically change the width of Datagrid column in FLEX
Can we change the width of the datagrid column dynamically by clicking on the border of the column in order to display the complete string which is too long to be displayed and needs to be scrolled ? ...
1
vote
3answers
1k views
setting a prototype value (for auto-width calculation) of a JTable column
either this doesn't exist, or I'm not thinking/searching correctly because it's late...
I want to set a JTable column width in Swing based on a prototype value for the largest string I expect (or ...
0
votes
0answers
57 views
In C#, can I vary the column width of my datagrid at runtime, to make the datagrid appear like a datalist?
I have bound my datagrid to a data table and I wanna make the datagrid look like a datalist. I cannot however use the datalist object itself, cause it is a web control. Is it possible to modify the ...
0
votes
3answers
61 views
Div to Fill Remaining Width
I'm trying to make this blue line (a div) automatically fill the rest of the space
The width of the container is fixed to 800px but the h1 changes width depending on the length of the text.
About ...
0
votes
1answer
126 views
jQuery - Data-table does not keep column width after sorting
I have a jQuery data-table which I specified the column width likes following:
"aoColumnDefs":[
{ "sWidth":"40%" },
{ "sWidth":"10%" },
{ "sWidth":"50%" } ]
I also specified the CSS style ...
0
votes
1answer
78 views
setColumnWidth() doesn't seem to work
I'm developing a webapplication in the Vaadin framework.
I have a table with 14 columns. The last column holds three icons and a problem I'm having is that like half of the time the table is rendered ...
0
votes
2answers
91 views
Get columns to stretch entire width of the table
I'm working in Java using the Vaadin framework.
I have a table with 14 columns. My problem is that that there's a small gap to the right of the last column, like the beginning of a new column that ...
0
votes
1answer
89 views
TableLayout in Android Development
I am having issues in TableLayout, width issues. I tried searching a lot, but all I get is solution using xml. I am doing it programmatically. Here is what I am doing
public void onCreate(Bundle ...
0
votes
0answers
150 views
Exporting HTML table to Open Office Calc - column width issue
I have an application which generates several reports that need to be opened as xls files. I'm doing this by generating an HTML table and setting the headers so that is opens as an xls file. The ...
0
votes
1answer
150 views
WPF DataGrid column gobbles up space faster than Ms Pac Man
I'm trying to get a DataGrid column to fill up the remaining space for the DataGrid, when the parent control contains a ScrollViewer without having the column take far more Width than the top level ...
0
votes
1answer
89 views
VS2010, column width of watch window
I can't see values of variables in my Watch window. I can see the variable names. I believe it's because the column width for variable name column is very wide. This problem exists for all watch ...
0
votes
3answers
86 views
Possible to apply some CSS only to users with Javascript disabled?
The title pretty much says what I'm looking to do, but to elaborate a little more, I want to apply some CSS to a class called prochart-colitem for users who do not have javascript enabled.
The ...
0
votes
1answer
311 views
jquery: get each element's width and sum them up?
How can I get each element's width and sum them up?
For instance, here is the html,
<div id="container">
<div class="block-item" style="width:10px"></div>
<div ...
0
votes
1answer
286 views
Set size of column in JTable
I have class that extends JTable and I have class implements TableModel, DefaultActionTableModel
public class RingTable extends JTable {
private static final long serialVersionUID = ...
0
votes
1answer
518 views
Floating DIV in table cell in IE
first fo all, sorry for my english. I am trying to do dragable and resizible table columns in pure Javascript. I inserted inside a cell 2 areas, one for draging (div) and 2nd for resizing (span) like ...
0
votes
2answers
253 views
force column size to smallest possible
I have a table with information in it and an icon in the last column that perfoms a function. I was wondering if it were possible to force that column to be as small as possible (i.e. as wide as the ...
0
votes
1answer
610 views
HTML table, horizontal scroll which tracks headings and vertical scroll- problem with text width
Ok firstly apologies if you recognise some of my earlier posts today. I have a piece of HTML i wrote, which seemed the only way to do this.
Horizontal scroll which follows keeps the thead aligned ...
0
votes
2answers
78 views
Same width in different columns using css
I have to columns, lets say rside and lside. They dont have fixed height. I want each time to adjust their width accordingly. So if lside is bigger, rside should be the same height.
So both of them ...
0
votes
1answer
81 views
Table cell widths altering in IE
I have a fairly complexed table which is not displaying correctly in IE. For some reason it is ignoring the cell widths and making some cells bigger/smaller than I have specified.
It works fine in ...
0
votes
1answer
832 views
WebKit and overflow: hidden affecting width
I'm having a problem with overflow and width in Google Chrome/Webkit. This is a follow-up question on this question, there you will find the CSS. I need to have visibility: hidden to fix the problem ...