From mboxrd@z Thu Jan 1 00:00:00 1970 From: Nick Dokos Subject: Re: Header in column view? Date: Sun, 16 Feb 2014 13:39:22 -0500 Message-ID: <87a9dqgaw5.fsf@gmail.com> References: <5300F9B0.7040008@krugs.de> Mime-Version: 1.0 Content-Type: text/plain Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:37075) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1WF6cz-0007YH-6p for emacs-orgmode@gnu.org; Sun, 16 Feb 2014 13:39:51 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1WF6cs-0006sC-BC for emacs-orgmode@gnu.org; Sun, 16 Feb 2014 13:39:45 -0500 Received: from plane.gmane.org ([80.91.229.3]:57612) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1WF6cs-0006qS-41 for emacs-orgmode@gnu.org; Sun, 16 Feb 2014 13:39:38 -0500 Received: from list by plane.gmane.org with local (Exim 4.69) (envelope-from ) id 1WF6cp-0004Z9-8P for emacs-orgmode@gnu.org; Sun, 16 Feb 2014 19:39:35 +0100 Received: from pool-98-110-172-167.bstnma.fios.verizon.net ([98.110.172.167]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Sun, 16 Feb 2014 19:39:35 +0100 Received: from ndokos by pool-98-110-172-167.bstnma.fios.verizon.net with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Sun, 16 Feb 2014 19:39:35 +0100 List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org Sender: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org To: emacs-orgmode@gnu.org Rainer M Krug writes: > is it possible to get the header into the column view of org, as it is > replaced by the columns (which is nice, but in my case I would like to > be able to have it in the column view)? > I don't know much about column view, which might explain why I don't understand your question. But you might want to add some detail, maybe even an example. The best I can do right now is that you want the heading (the %ITEM) to precede the corresponding row in the table. E.g. in the following org file --8<---------------cut here---------------start------------->8--- #+COLUMNS: %25ITEM %FOO %BAR * H1 :PROPERTIES: :FOO: foo :BAR: bar :END: * H2 :PROPERTIES: :BAR: bar2 :FOO: foo2 :END: * Capture #+BEGIN: columnview :hlines 1 :id global | ITEM | FOO | BAR | |---------------+------+------| | * H1 | foo | bar | |---------------+------+------| | * H2 | foo2 | bar2 | |---------------+------+------| | * Capture | | | #+END: --8<---------------cut here---------------end--------------->8--- do you want the table to appear like this? | ITEM | FOO | BAR | |---------------+------+------| * H1 | * H1 | foo | bar | |---------------+------+------| *H2 | * H2 | foo2 | bar2 | |---------------+------+------| | * Capture | | | -- Nick