[ 
http://issues.apache.org/jira/browse/TOMAHAWK-86?page=comments#action_12427759 
] 
            
Ryan Wynn commented on TOMAHAWK-86:
-----------------------------------

I accidently created a new ticket for this with the patch attached.  It is 
TOMAHAWK-596.  TOMAHAWK-596 contains more description and the patch file.  It 
should be considered to supercede this ticket.



> HtmlDataScrollerRenderer getLink methods creating duplicate HtmlCommandLinks
> ----------------------------------------------------------------------------
>
>                 Key: TOMAHAWK-86
>                 URL: http://issues.apache.org/jira/browse/TOMAHAWK-86
>             Project: MyFaces Tomahawk
>          Issue Type: Bug
>          Components: Data Scroller
>         Environment: Windows 2000, IE
>            Reporter: Ryan Wynn
>         Assigned To: 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