[ 
http://issues.apache.org/jira/browse/TOMAHAWK-86?page=comments#action_12376769 
] 

Mike Kienenberger commented on TOMAHAWK-86:
-------------------------------------------

Ryan,

You mentioned you had a patch for this issue, but I don't see it.

> HtmlDataScrollerRenderer getLink methods creating duplicate HtmlCommandLinks
> ----------------------------------------------------------------------------
>
>          Key: TOMAHAWK-86
>          URL: http://issues.apache.org/jira/browse/TOMAHAWK-86
>      Project: MyFaces Tomahawk
>         Type: Bug

>   Components: Data Scroller
>  Environment: Windows 2000, IE
>     Reporter: Ryan Wynn
>     Assignee: Thomas Spiegl

>
> The getLink methods in HtmlDataScrollerRenderer are called every time the 
> HtmlDataScroller is rendered.  The methods return a transient 
> HtmlCommandLink.  It looks like the transient property is not being honored 
> because I am getting duplicate id exceptions for these links.
> In order to patch it I extended HtmlDataScrollerRenderer and checked for the 
> existence of the links.  This seemed to work for me.  But I still think it 
> should have been ok as it was because the links are being set to transient.
> In my extension of HtmlDataScrollerRenderer I added the following:
> HtmlCommandLink link = (HtmlCommandLink) 
> scroller.findComponent(scroller.getId() + facetName);
> if (link == null) { // create link and link's children and add link to 
> scroller .... }
> return link;
> The Faces view is being stored in the session.  Not sure how transient 
> property disallows Components to be stored in the session along with the view 
> tree.

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
   http://issues.apache.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see:
   http://www.atlassian.com/software/jira

Reply via email to