Questions tagged [rowheader]
33 questions
9
votes
1 answer
DataGridView put text in ColumnHeader of RowHeader
Is it possible to add text into ColumnHeader of the RowHeader. I put autoincrement into Rowheaders of my DataGridView and I would like to put "No." above that.
Something like:
//Autoincrement RowHeaders
foreach (DataGridViewRow row in myDGV.Rows)
{
…

user1080533
- 865
- 2
- 21
- 35
9
votes
4 answers
Java code to display lines number in jtextarea
I trying to write java code to pop up text area and if i add 9000 lines in jtextarea at right it display 9000 lines and vertical line.
Is there anyway that i can do it??
Is there anyway that i can add line number like in pics..
Please help me!!…

user2726811
- 151
- 1
- 2
- 8
4
votes
1 answer
How to handle RowSorter-Synchronization in JTables with RowHeader?
Following Situation: I have a J(X)Table with RowHeader (As guidline I used one of Rob Camicks great Examples). All worked as expected.
By requirement the data I receive from server already contains a tablerownumber, which I have to show in the…

crusam
- 6,140
- 6
- 40
- 68
2
votes
2 answers
Is it possible to add Row headers to a JSF or PrimeFaces datatable?
Well, I've been looking for any examples but all I could find was just examples in plain Java but I need to do something like this one or this other but in a JSF or PrimeFaces component.

AlexLezama
- 137
- 1
- 2
- 8
2
votes
2 answers
Displaying row numbers in JTable
hi I have this jtable which I want to have its auto increment row header for the user to identify how many data does the table returned. I am actually getting the table model from result set and the data is not fixed. It vary depends on the search…

miles
- 225
- 3
- 10
- 20
1
vote
0 answers
How to add different colour icons/images automatic to the Row Header of a DataGridView based on database fill the DataTable VB.NET
How to add different colour icons/images automatic to the Row Header of a DataGridView based on database fill the DataTable VB.NET?
here I failed to apply the column "ColorIndex"
maybe something is wrong in the code implementation from me .
Full…

roy
- 693
- 2
- 11
1
vote
2 answers
How to add different colour icons/images to the Row Header of a DataGridView
How to add different colour icons/images PNG Transparent to DataGridView row header in VB.NET?
Is it possible to provide a different color each row in the header row of DataGridView or is there another solution with DataGridView Column Image or…

roy
- 693
- 2
- 11
1
vote
1 answer
Add shared row headers in matplotlib
I haven't been able to find a way to add a shared row header across multiple subplots, as in the figure below. I don't want to use the xlabel of any plot, both because I need the label and because they don't align in the center of the row. I'd…

Caroline
- 43
- 1
- 8
1
vote
1 answer
How to make one JScrollPane connected to two components?,workaround
I'm aware that JViewport is a single-child container,and also that I cant add multiple components to one jscrollpane.
But can I track position of scrollpane and according to it modify view of another component?
To show what im trying to do here is a…

Tomas Bisciak
- 2,801
- 5
- 33
- 57
1
vote
2 answers
Wpf DataGrid RowHeader
I am trying to use a RowHeader in a wpf DataGrid with no luck.
I followed this post
My XAML code
…

A.P.
- 91
- 1
- 6
1
vote
2 answers
JTable- Resize row header when row is resized
I have a grid (JTable) that looks like MS Excel's grid. I want to allow the user to resize rows and columns. For the columns I simply used this :
grid.getTableHeader().setResizingAllowed(true);
And for the rows I took the TableRowResizer class from…

blackbishop
- 30,945
- 11
- 55
- 76
0
votes
1 answer
How to add different colour icons/images automatic to the Row Header of a DataGridView based on value in column1
How to add different colour icons/images automatic to the Row Header of a DataGridView based on value in column1?
is it possible to pick up all the colors randomly without manually setting the color based on the value in "COLUMN1" and can also take…

roy
- 693
- 2
- 11
0
votes
0 answers
How to create a JTable with row headers and column headers
So i'm creating a class that create a table with row headers and column header.
this class will be called in another class to create different tables with the same layout.
The jtable will be created using getters and setters
The rowheader table will…

Ghassen Kannou
- 1
- 1
0
votes
1 answer
Hide PandasTable row index
enter image description herefor display purposes, I would like to hide the row identifier's in pandastable, and I can find no documentation on how this may be possible.

jrl
- 1
- 2
0
votes
1 answer
Matching row headers
I have a mapping table which I use for matching column headers of two separate sheets (Sheet1 and Sheet2). But when I also want to match the row headers (months) the code is matching the rows, not the cells on column A. Any ideas how can I make this…

TedroyG
- 49
- 6