Return-Path: Delivered-To: apmail-pivot-user-archive@www.apache.org Received: (qmail 5004 invoked from network); 24 Jun 2010 12:44:01 -0000 Received: from unknown (HELO mail.apache.org) (140.211.11.3) by 140.211.11.9 with SMTP; 24 Jun 2010 12:44:01 -0000 Received: (qmail 28340 invoked by uid 500); 24 Jun 2010 12:44:01 -0000 Delivered-To: apmail-pivot-user-archive@pivot.apache.org Received: (qmail 28200 invoked by uid 500); 24 Jun 2010 12:43:58 -0000 Mailing-List: contact user-help@pivot.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: user@pivot.apache.org Delivered-To: mailing list user@pivot.apache.org Received: (qmail 28186 invoked by uid 99); 24 Jun 2010 12:43:57 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 24 Jun 2010 12:43:57 +0000 X-ASF-Spam-Status: No, hits=2.0 required=10.0 tests=FREEMAIL_FROM,SPF_HELO_PASS,SPF_NEUTRAL,T_TO_NO_BRKTS_FREEMAIL,URI_HEX X-Spam-Check-By: apache.org Received-SPF: neutral (nike.apache.org: 216.139.236.158 is neither permitted nor denied by domain of roger.varley@googlemail.com) Received: from [216.139.236.158] (HELO kuber.nabble.com) (216.139.236.158) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 24 Jun 2010 12:43:50 +0000 Received: from ben.nabble.com ([192.168.236.152]) by kuber.nabble.com with esmtp (Exim 4.63) (envelope-from ) id 1ORlmD-0007zh-Gn for user@pivot.apache.org; Thu, 24 Jun 2010 05:43:29 -0700 Date: Thu, 24 Jun 2010 05:43:29 -0700 (PDT) From: "B.L. Zeebub" To: user@pivot.apache.org Message-ID: <1277383409489-919398.post@n3.nabble.com> In-Reply-To: References: <1277373521124-919140.post@n3.nabble.com> Subject: Re: Advice for a newbie MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org Chris, Thanks for the response. I'd already started with the TableView. You say that I can use just a Pivot List for my datasource. I couldn't get it to work with a simple list unless my Pivot list was a list of maps. I've attached my wtkx file and the code I use to load it below. How do I modify it to use a simple list of strings? Regards To initialize the tableview; messages = new ArrayList>(); TableView tv = (TableView) wtkxSerializer.get("tableView"); tv.setTableData(messages); to load it; public void notify(GenesisEvent event) { HashMap map = new HashMap(); map.put("info",event.getMessage()); messages.add(map); } -- View this message in context: http://apache-pivot-users.399431.n3.nabble.com/Advice-for-a-newbie-tp919140p919398.html Sent from the Apache Pivot - Users mailing list archive at Nabble.com.