emacs-orgmode@gnu.org archives
 help / color / mirror / code / Atom feed
* Header in column view?
@ 2014-02-16 17:47 Rainer M Krug
  2014-02-16 18:39 ` Nick Dokos
  0 siblings, 1 reply; 3+ messages in thread
From: Rainer M Krug @ 2014-02-16 17:47 UTC (permalink / raw)
  To: emacs-orgmode

[-- Attachment #1: Type: text/plain, Size: 613 bytes --]

Hi

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)?

Cheers,

Rainer
-- 
Rainer M. Krug, PhD (Conservation Ecology, SUN), MSc (Conservation
Biology, UCT), Dipl. Phys. (Germany)

Centre of Excellence for Invasion Biology
Stellenbosch University
South Africa

Tel :       +33 - (0)9 53 10 27 44
Cell:       +33 - (0)6 85 62 59 98
Fax :       +33 - (0)9 58 10 27 44

Fax (D):    +49 - (0)3 21 21 25 22 44

email:      Rainer@krugs.de

Skype:      RMkrug


[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 560 bytes --]

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: Header in column view?
  2014-02-16 17:47 Header in column view? Rainer M Krug
@ 2014-02-16 18:39 ` Nick Dokos
  2014-02-16 19:31   ` Rainer M Krug
  0 siblings, 1 reply; 3+ messages in thread
From: Nick Dokos @ 2014-02-16 18:39 UTC (permalink / raw)
  To: emacs-orgmode

Rainer M Krug <Rainer@krugs.de> 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

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: Header in column view?
  2014-02-16 18:39 ` Nick Dokos
@ 2014-02-16 19:31   ` Rainer M Krug
  0 siblings, 0 replies; 3+ messages in thread
From: Rainer M Krug @ 2014-02-16 19:31 UTC (permalink / raw)
  To: Nick Dokos, emacs-orgmode

[-- Attachment #1: Type: text/plain, Size: 2062 bytes --]



On 02/16/14, 19:39 , Nick Dokos wrote:
> Rainer M Krug <Rainer@krugs.de> 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.

%ITEM is exactly what I was looking for.

Thanks,

Rainer

> 
> 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     |      |      |
> 

-- 
Rainer M. Krug, PhD (Conservation Ecology, SUN), MSc (Conservation
Biology, UCT), Dipl. Phys. (Germany)

Centre of Excellence for Invasion Biology
Stellenbosch University
South Africa

Tel :       +33 - (0)9 53 10 27 44
Cell:       +33 - (0)6 85 62 59 98
Fax :       +33 - (0)9 58 10 27 44

Fax (D):    +49 - (0)3 21 21 25 22 44

email:      Rainer@krugs.de

Skype:      RMkrug


[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 560 bytes --]

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2014-02-16 19:32 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2014-02-16 17:47 Header in column view? Rainer M Krug
2014-02-16 18:39 ` Nick Dokos
2014-02-16 19:31   ` Rainer M Krug

Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/emacs/org-mode.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).