Return-Path: Delivered-To: apmail-cocoon-users-archive@www.apache.org Received: (qmail 68637 invoked from network); 10 Nov 2004 17:32:49 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (209.237.227.199) by minotaur-2.apache.org with SMTP; 10 Nov 2004 17:32:49 -0000 Received: (qmail 77796 invoked by uid 500); 10 Nov 2004 17:32:37 -0000 Delivered-To: apmail-cocoon-users-archive@cocoon.apache.org Received: (qmail 77734 invoked by uid 500); 10 Nov 2004 17:32:36 -0000 Mailing-List: contact users-help@cocoon.apache.org; run by ezmlm Precedence: bulk list-help: list-unsubscribe: list-post: Reply-To: users@cocoon.apache.org Delivered-To: mailing list users@cocoon.apache.org Received: (qmail 77712 invoked by uid 99); 10 Nov 2004 17:32:35 -0000 X-ASF-Spam-Status: No, hits=-0.0 required=10.0 tests=SPF_HELO_PASS,SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (hermes.apache.org: domain of philipp.rech@gmx.de designates 213.165.64.20 as permitted sender) Received: from [213.165.64.20] (HELO mail.gmx.net) (213.165.64.20) by apache.org (qpsmtpd/0.28) with SMTP; Wed, 10 Nov 2004 09:32:34 -0800 Received: (qmail 15763 invoked by uid 0); 10 Nov 2004 17:32:31 -0000 Received: from 217.185.3.87 by www36.gmx.net with HTTP; Wed, 10 Nov 2004 18:32:31 +0100 (MET) Date: Wed, 10 Nov 2004 18:32:31 +0100 (MET) From: "Philipp Rech" To: users@cocoon.apache.org MIME-Version: 1.0 References: <4192378C.5060404@gmx.de> Subject: JX-Template with repeater data... how to? X-Priority: 3 (Normal) X-Authenticated: #1715056 Message-ID: <27999.1100107951@www36.gmx.net> X-Mailer: WWW-Mail 1.6 (Global Message Exchange) X-Flags: 0001 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked X-Spam-Rating: minotaur-2.apache.org 1.6.2 0/1000/N hello Cocooner's! i have a problem: want to display data from a repetar widget in a JX-Template. So data is passed to the template via a Flow: --------------------------------------------------------------- form2.showForm("goods"); var model2 = form2.getModel(); cocoon.sendPageAndWait("confrim_goods", {"model": model2}); -------------------------------------------------------------- with works fine with usual c-forms and jx-tempalets where i adress them like: --------------------------------------------------------------
>${model.WIDGET_NAME}
-------------------------------------------------------------- but how can i do the same with a repeater (the c-forms tempalte is this): -------------------------------------------------------------
-
------------------------------------------------------------------- and the JX-Tempalte THAT DOES NOT WORK is this: ------------------------------------------------------------------- ------------------------------------------------------------------- i do not know what to put in the to adress the goods elements of the model.... Thanks in davance, thanks a lot indeed! phil- --------------------------------------------------------------------- To unsubscribe, e-mail: users-unsubscribe@cocoon.apache.org For additional commands, e-mail: users-help@cocoon.apache.org
goodsMaterialId description amount unit confiscate assignAbleToPerson
${model.goodsMaterialId} ${model.description} ${model.amount} ${model.unit} ${model.confiscate} ${model.assignAbleToPerson}