Return-Path: Delivered-To: apmail-shale-issues-archive@locus.apache.org Received: (qmail 77235 invoked from network); 15 Aug 2006 03:51:20 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (209.237.227.199) by minotaur.apache.org with SMTP; 15 Aug 2006 03:51:20 -0000 Received: (qmail 98501 invoked by uid 500); 15 Aug 2006 03:51:20 -0000 Delivered-To: apmail-shale-issues-archive@shale.apache.org Received: (qmail 98467 invoked by uid 500); 15 Aug 2006 03:51:20 -0000 Mailing-List: contact issues-help@shale.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@shale.apache.org Delivered-To: mailing list issues@shale.apache.org Received: (qmail 98458 invoked by uid 99); 15 Aug 2006 03:51:20 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (140.211.166.49) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 14 Aug 2006 20:51:20 -0700 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests= X-Spam-Check-By: apache.org Received: from [209.237.227.198] (HELO brutus.apache.org) (209.237.227.198) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 14 Aug 2006 20:51:19 -0700 Received: from brutus (localhost [127.0.0.1]) by brutus.apache.org (Postfix) with ESMTP id 7AC1E41001C for ; Tue, 15 Aug 2006 03:48:21 +0000 (GMT) Message-ID: <29727015.1155613701500.JavaMail.jira@brutus> Date: Mon, 14 Aug 2006 20:48:21 -0700 (PDT) From: "Andrew Gilette (JIRA)" To: issues@shale.apache.org Subject: [jira] Created: (SHALE-255) Subview doing processDecode on beginEncode MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N Subview doing processDecode on beginEncode ------------------------------------------ Key: SHALE-255 URL: http://issues.apache.org/struts/browse/SHALE-255 Project: Shale Issue Type: Bug Components: Core Affects Versions: 1.0.3-SNAPSHOT Reporter: Andrew Gilette inputText components within a shale:subview are giving the following warning "There should always be a submitted value for an input if it is rendered, its form is submitted, and it is not disabled or read-only" when the components are first created(When navigating to a new page the components on the new page are giving the error). I believe it is because of the following code in org.apache.shale.component.Subview public void encodeBegin(FacesContext context) { Object vc = getViewController(context, false); if (vc != null) { try { getViewControllerCallbacks(context).prerender(vc); } catch (Exception e) { handleException(context, e); } } super.processDecodes(context); } Shouldn't it be.... public void encodeBegin(FacesContext context) throws IOException{ Object vc = getViewController(context, false); if (vc != null) { try { getViewControllerCallbacks(context).prerender(vc); } catch (Exception e) { handleException(context, e); } } super.encodeBegin(context); } -- This message is automatically generated by JIRA. - If you think it was sent incorrectly contact one of the administrators: http://issues.apache.org/struts/secure/Administrators.jspa - For more information on JIRA, see: http://www.atlassian.com/software/jira