Return-Path: Delivered-To: apmail-incubator-isis-dev-archive@minotaur.apache.org Received: (qmail 22671 invoked from network); 15 Apr 2011 06:55:49 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.3) by minotaur.apache.org with SMTP; 15 Apr 2011 06:55:49 -0000 Received: (qmail 65290 invoked by uid 500); 15 Apr 2011 06:55:49 -0000 Delivered-To: apmail-incubator-isis-dev-archive@incubator.apache.org Received: (qmail 64363 invoked by uid 500); 15 Apr 2011 06:55:48 -0000 Mailing-List: contact isis-dev-help@incubator.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: isis-dev@incubator.apache.org Delivered-To: mailing list isis-dev@incubator.apache.org Received: (qmail 64329 invoked by uid 99); 15 Apr 2011 06:55:46 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 15 Apr 2011 06:55:46 +0000 X-ASF-Spam-Status: No, hits=0.7 required=5.0 tests=SPF_NEUTRAL X-Spam-Check-By: apache.org Received-SPF: neutral (athena.apache.org: local policy) Received: from [41.48.9.21] (HELO mta-neotel-1.cellc.co.za) (41.48.9.21) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 15 Apr 2011 06:55:38 +0000 Received: from abacus.localdomain ([41.53.241.227]) by mta-neotel-1.cellc.co.za (8.14.4/8.14.4) with ESMTP id p3F6t4je022174 for ; Fri, 15 Apr 2011 08:55:08 +0200 Received: from [192.168.0.102] (bubbles [192.168.0.102]) by abacus.localdomain (Postfix) with ESMTP id 644518D53 for ; Thu, 14 Apr 2011 20:24:45 +0200 (SAST) From: "Kevin Meyer - KMZ" Organization: Kevin Meyer (Sole Prop.) To: Isis-dev@incubator.apache.org Date: Thu, 14 Apr 2011 20:24:32 +0200 MIME-Version: 1.0 Subject: Wicket viewer not picking up action choices? Message-ID: <4DA73BE0.493.62071D@kevin.kmz.co.za> Priority: normal X-mailer: Pegasus Mail for Windows (4.52) Content-type: text/plain; charset=US-ASCII Content-transfer-encoding: 7BIT Content-description: Mail message body X-MSISDN: 27848775662 X-CONN-IP: 41.53.241.227 Dan, Is this a known issue: In class Employee, there are: public Employee someActionWithParameterChoices(final Integer param0, final Integer param1) { setLimit(param0 - param1); return this; } public List choices0SomeActionWithParameterChoices() { return Arrays.asList(1, 2, 3); } In the Wicket viewer, the choices0* values are not being picked up and offered. In: public Employee someActionWithParameterDefaults(final int param0, final int param1) { setLimit(param0 + param1); return this; } public int default0SomeActionWithParameterDefaults() { return 5; } The default value *is* picked up. Regards, Kevin