Return-Path: Delivered-To: apmail-myfaces-users-archive@www.apache.org Received: (qmail 95882 invoked from network); 11 Aug 2008 04:40:31 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 11 Aug 2008 04:40:31 -0000 Received: (qmail 14778 invoked by uid 500); 11 Aug 2008 04:40:26 -0000 Delivered-To: apmail-myfaces-users-archive@myfaces.apache.org Received: (qmail 14745 invoked by uid 500); 11 Aug 2008 04:40:26 -0000 Mailing-List: contact users-help@myfaces.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: "MyFaces Discussion" Delivered-To: mailing list users@myfaces.apache.org Received: (qmail 14734 invoked by uid 99); 11 Aug 2008 04:40:26 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 10 Aug 2008 21:40:26 -0700 X-ASF-Spam-Status: No, hits=-0.0 required=10.0 tests=SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (athena.apache.org: local policy) Received: from [217.194.229.3] (HELO mail2.ktit.de) (217.194.229.3) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 11 Aug 2008 04:39:27 +0000 Received: from mail2.ktit.de (localhost.localdomain [127.0.0.1]) by selma-vanilla.ktit.de (Postfix) with ESMTP id A99EF2281E1 for ; Mon, 11 Aug 2008 06:39:20 +0200 (CEST) Received: from zeus.local (dslb-084-062-179-019.pools.arcor-ip.net [84.62.179.19]) by selma.klute-thiemann.de (Postfix) with ESMTP id 981BD228154 for ; Mon, 11 Aug 2008 06:39:20 +0200 (CEST) From: Christian Kaltepoth To: "MyFaces Discussion" Subject: Re: Table rows without table Date: Mon, 11 Aug 2008 06:40:10 +0200 User-Agent: KMail/1.9.6 References: <489F3FDD.1080107@gmx.at> In-Reply-To: <489F3FDD.1080107@gmx.at> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-15" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200808110640.11300.lists@kaltepoth.de> X-Virus-Checked: Checked by ClamAV on apache.org On Sunday 10 August 2008 21:22:05 Markus Mehrwald wrote: > Hello, > > actually this is not really a MyFaces problem but hopefully someone can > help me although. > I have got a panel grid with two columns and a few rows. In this panel > grid I want to have something like a data table or a data list but not > as separate table in a column of the panel grid but only the rows i. e. > without a own tag. > I tried to implement my own iterator which writes only and
> tags without the tags because I have already
tags from > the panel grid. Unfortunately the panel grid always creates
tags > around my iterator. > Hopefully a small illustration will be helpfully for understanding what > I want: > > Thank you for any kind of help! There are several ways to achieve this: * Use Tomahawks extended datatable with embedded="true". This prevents rendering of HTML table tags and just renders simple rows. See: http://myfaces.apache.org/tomahawk/tlddoc/t/dataTable.html * Use Tomahawks dataList component with layout="simple". This will simply render all children for each row, so you will have to render the and
tags yourself. See: http://myfaces.apache.org/tomahawk/tlddoc/t/dataList.html * If you are using facelets, you could also use See: https://facelets.dev.java.net/nonav/docs/dev/docbook.html#template-repeat Kind regards Christian