From mboxrd@z Thu Jan 1 00:00:00 1970 From: David Jacobs Subject: Renaming ITEM in column view causes problems Date: Sat, 27 Feb 2016 06:32:50 +0000 (UTC) Message-ID: Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:53916) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1aZYTA-0002J0-8p for emacs-orgmode@gnu.org; Sat, 27 Feb 2016 01:35:13 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1aZYT7-0004xk-1b for emacs-orgmode@gnu.org; Sat, 27 Feb 2016 01:35:12 -0500 Received: from plane.gmane.org ([80.91.229.3]:57700) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1aZYT6-0004xQ-R6 for emacs-orgmode@gnu.org; Sat, 27 Feb 2016 01:35:08 -0500 Received: from list by plane.gmane.org with local (Exim 4.69) (envelope-from ) id 1aZYT3-0007Q6-1d for emacs-orgmode@gnu.org; Sat, 27 Feb 2016 07:35:05 +0100 Received: from cpe-76-173-177-106.hawaii.res.rr.com ([76.173.177.106]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Sat, 27 Feb 2016 07:35:05 +0100 Received: from david by cpe-76-173-177-106.hawaii.res.rr.com with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Sat, 27 Feb 2016 07:35:05 +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 Running Org version 8.3.4 (emacs 24.5.1) The following example shows how renaming the ITEM column in column view causes the parent heading to show up. Anyone know how to fix this? ** Bad Summary #+BEGIN: columnview :skip-empty-rows t :id "bad" | Name | Nick | |------------------------+------| | ** Contact Information | | | *** John Doe | Jon | #+END ** Contact Information :PROPERTIES: :ID: bad :COLUMNS: %20ITEM(Name) %Nick :END: *** John Doe :PROPERTIES: :Nick: Jon :END: ** Good Summary #+BEGIN: columnview :skip-empty-rows t :id "good" | ITEM | Nick | |--------------+------| | *** John Doe | Jon | #+END ** Contact Information :PROPERTIES: :ID: good :COLUMNS: %20ITEM %Nick :END: *** John Doe :PROPERTIES: :Nick: Jon :END: Thanks for any help! David