Questions tagged [column-width]

282 questions
0
votes
2 answers

datagridview column width changed

I have 2 datagridview .I want to change width of a column of datagriview while I'm changing the width of a column of the other datagridview with the mouse. I tried this code but it doesn't work. Private Sub…
YosrJ
  • 121
  • 3
  • 16
0
votes
1 answer

How to get a sticky table header with the same column widths as the base table

I'm trying to create a sticky table header, but the problem is, I can't get the widths of the columns to match the widths of the columns in the base table. The problem seems to be that regardless of the widths I set (or not set) for the individual…
HartleySan
  • 7,404
  • 14
  • 66
  • 119
0
votes
1 answer

CSS individual cell width

I am having some trouble applying individual cell widths. There's a 1x2 (1 row, 2 col) table in my code. The 1st cell has just links, while the other has an iframe. Because I had to style the first cell different, I used a selector. The CSS for…
0
votes
1 answer

How can I set the size of columns in a JTableBinding?

I am creating a GUI program using NetBeans IDE 8.0 and I need to show a table with different sized columns. Using a JtableBinding linked to a MySql table, it shows the contents in a grid having all columns set to the same width. I would change the…
0
votes
1 answer

WPF DataGrid : Set Width of Columns to occupy all space dynamically Issue

I have a case where I have to show data in Datagrid. Cols of DataGrid may vary from 2 to 20, I add cols dynamically. I just want to set the width of cols to "*" and make it utilize all available space on the screen. But as I am adding cols…
Tvd
  • 4,463
  • 18
  • 79
  • 125
0
votes
0 answers

How to set column width

I want to have a text box in my context menu which by default will give me my current column width(for the particular column) and then I can set new column width in px. Is this possible?
user3378624
  • 5
  • 1
  • 7
0
votes
2 answers

OrgMode- autofit table column width to contents on HTML export

I am trying to export an Org mode table to HTML, and it's adding a HUGE amount of space between each column so that I have to really scroll to the right to see the whole table. How can I set the table column width to automatically resize according…
SummerEla
  • 1,902
  • 3
  • 26
  • 43
0
votes
1 answer

Footable - client wants column width to remain constant between pages

When you have multiple pages of data in a Footable, the column width changes as you page through the data, depending on what appears in each column at any given time. This is ugly. I think my client's request means I will not have responsive tables,…
cdonner
  • 37,019
  • 22
  • 105
  • 153
0
votes
2 answers

Can Delphi let user resize TStringGrid column without fixed rows?

I want to have a grid where all rows look the same In Delphi, how can i let the user resize TStringGrid columns without fixed rows? Normally you can only adjust the fixed rows, and you can't make the whole grid fixed. I am using XE2. TIA Mark
Mark Patterson
  • 417
  • 2
  • 6
  • 15
0
votes
1 answer

How to calculate group padding in Highcharts based on x-axis width

I'm using Highcharts to render different charts on a webpage I'm working on. Some charts has single columns, and other charts has several data series. Number of categories on the x-axis differs as well. In additional, the web design is responsive so…
0
votes
1 answer

Width in TableLayout

in my app I have an activity that shows a table with data. The problem is that I can not adjust the width of the table to the full width of the screen. In smartphone the width of the table takes more than the width of the device so I use a scroll,…
KryNaC
  • 379
  • 4
  • 21
0
votes
2 answers

Auto expanding columns

I have 3 columns below the header. They are Left Side bar,content and Right side bar. i want the height of the columns to increase according to the height of the tallest column. For Example, If one of the columns is 400 px in height, i want the…
Pradeep
  • 1,193
  • 6
  • 27
  • 44
0
votes
2 answers

DataGridView - Suppress all word wrapping

I'm trying to implement a DataGridView that has smaller cell width than autosize does. If you look really close at a autosized cell you'll notice that there is still some space that is not used to actually display the cell's content. That's why I…
0
votes
1 answer

Result column widths with derived tables and rollup

Consider these mysql queries: create temporary table t (a tinyint); insert into t values (1),(1),(2); select * from t; -- +------+ -- | a | -- +------+ -- | 1 | -- | 1 | -- | 2 | -- +------+ select c,count(*) from (select a,count(*) c…
msh210
  • 256
  • 6
  • 23
0
votes
1 answer

Save/restore column widths in dataTable

I'd like to create a dataTable with resizeable columns. When the user resizes a column, I would like to store it somewhere in memory, may be cache or session. The next time the user views the table, I want to be able to set the column widths to…
1 2 3
18
19