Return-Path: X-Original-To: apmail-struts-issues-archive@minotaur.apache.org Delivered-To: apmail-struts-issues-archive@minotaur.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 70B3910E55 for ; Tue, 11 Mar 2014 18:01:59 +0000 (UTC) Received: (qmail 97373 invoked by uid 500); 11 Mar 2014 18:01:57 -0000 Delivered-To: apmail-struts-issues-archive@struts.apache.org Received: (qmail 97025 invoked by uid 500); 11 Mar 2014 18:01:55 -0000 Mailing-List: contact issues-help@struts.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@struts.apache.org Delivered-To: mailing list issues@struts.apache.org Received: (qmail 96045 invoked by uid 99); 11 Mar 2014 18:01:51 -0000 Received: from arcas.apache.org (HELO arcas.apache.org) (140.211.11.28) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 11 Mar 2014 18:01:51 +0000 Date: Tue, 11 Mar 2014 18:01:51 +0000 (UTC) From: "Walid Ghafir (JIRA)" To: issues@struts.apache.org Message-ID: In-Reply-To: References: Subject: [jira] [Created] (WW-4299) Components: "id" parameter is deleted MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 Walid Ghafir created WW-4299: -------------------------------- Summary: Components: "id" parameter is deleted Key: WW-4299 URL: https://issues.apache.org/jira/browse/WW-4299 Project: Struts 2 Issue Type: Bug Components: Plugin - Tags Affects Versions: 2.3.16.1 Reporter: Walid Ghafir Priority: Critical When using tag, *parameter* named "id" is not accessible in component. That seems to be due to UIBean.populateComponentHtmlId() method which always overwrites it with value of *attribute* named "id", even if id attribute has not been specified. For example, here is a call to a test JSP component: {code} {code} If TestComponent.jsp, {{parameters.test}} will have value "testTestValue" and {{parameters.id}} will be null although it's expected to be "testIdValue". I think that it's due to method {{populateComponentHtmlId(Form form)}} in {{org.apache.struts2.components.UIBean}} class that always does this, at the end of the method body: {code} addParameter("id", tryId); {code} -- This message was sent by Atlassian JIRA (v6.2#6252)