Questions tagged [columnheader]

164 questions
149
votes
3 answers

How can I suppress column header output for a single SQL statement?

I'm executing some SQL statements in batch (using the mysql command-line binary). I want one of my several SELECT statements to not print the column headers, just the selected records. Is this possible?
einpoklum
  • 118,144
  • 57
  • 340
  • 684
39
votes
3 answers

Remove Column Header into the Output Text file

I want to create a flat file (text file) of my query from Oracle SQL Developer. I have successfully created the text file using SPOOL, thru a script text file, but i want to remove the header of each column into my output. I am getting this…
Marvin Wong
  • 479
  • 2
  • 8
  • 11
26
votes
7 answers

How to change the first row to be the header in R?

I have the following table: X.5 X.6 X.7 X.8 X.9 X.10 X.11 X.12 X.13 17 Zip CuCurrent PaCurrent PoCurrent Contact Ext Fax email Status 18 74136 0 1 0 918-491-6998 …
PMa
  • 1,751
  • 7
  • 22
  • 28
16
votes
4 answers

How do I set axis label with column header in gnuplot?

My question is very simple. Suppose I have a datafile with column headers, like as follows first second 1 1 2 1 3 6 4 9 In gnuplot how do i make it so that the datafile is plotted using the column header as axis label? e.g. by calling plot…
Ferdinando Randisi
  • 4,068
  • 6
  • 32
  • 43
11
votes
6 answers

hide primefaces table column header

I have a p:treeTable and the tree contents are all in one column. The tree is a shared component so some of my pages require column header and and some don't. In the pages where the columnHeader is empty, it creates the an empty row for the column…
santa029
  • 329
  • 6
  • 10
  • 23
10
votes
1 answer

Column Header for a WPF TreeView

I am using the WPF TreeView to display some hierarchical information. Each item in the TreeView consists of several attributes, so I am using a Grid within my HierarchicalDataTemplate to display these attributes:
Naresh
  • 23,937
  • 33
  • 132
  • 204
10
votes
3 answers

WPF Datagrid binding custom column headers

I am trying to figure out how to bind a WPF DataGrid's column header and main data to a data source using an MVVM pattern. The result I'm looking for would look like this: (source: vallelunga.com) I've successfully styled the headers here, but I'm…
Brian Vallelunga
  • 9,869
  • 15
  • 60
  • 87
10
votes
2 answers

Delphi: ListView (vsReport) single column header caption with custom font color?

In a ListView with vsReport ViewStyle, how can I customize the font color of just any single column header caption? For example (the second column header caption has a red font color):
user1580348
  • 5,721
  • 4
  • 43
  • 105
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
3 answers

How to add tooltip text on my Gridview column header, WPF VS2010

Here is my grid i what to give an explanation to the header "RED.BROJ" when on mouse over that header to show the expl. text.
denza
  • 1,298
  • 4
  • 24
  • 49
7
votes
3 answers

How to set the DataContext on a DataGrid Column Header

In my Silverlight 3 user control I am showing a basic DataGrid control. I need to generate the columns programmatically as follows: Style headerStyle = (Style)Resources["ColumnHeaderStyle"]; DataGridTextColumn col = new…
Philipp Schmid
  • 5,778
  • 5
  • 44
  • 66
7
votes
3 answers

C#/WPF: Toolkit DataGrid - Transpose rows and columns

I've a List someList; which looks like this: public class DetailObject { public string Titel { get; set; } public int Value1 { get; set; } public int Value2 { get; set; } public int Value3 {…
Joseph jun. Melettukunnel
  • 6,267
  • 20
  • 69
  • 90
6
votes
2 answers

Set GridViewColumnHeader style from inside a ListView style

In one of my projects I have inherited a ListView and overridden the style by setting a new control template. I have also overridden the column header style. So far I have found two ways to do this: 1) By setting a style key and referencing the…
Christian Myksvoll
  • 634
  • 2
  • 7
  • 16
6
votes
1 answer

WPF-Listview Column Header Resize with Custom Style

I am new in WPF ,In the WPF application I used Listview Gridview for display the data. I have customized the style of Listview, Now I want to change the default glossy blue color of mouse hover effect for Listview Gridview Column Header I googled…
Vsagar
  • 197
  • 2
  • 17
6
votes
5 answers

How to hide TableView column header in JavaFX 8?

I need to have an observable list of a type that will be displayed in a TableView with one single column, that when selected will display the rest of its information on the right. The TableView is wrapped in a TitledPane, which is wrapped in an…
user3804927
  • 749
  • 1
  • 7
  • 15
1
2 3
10 11