function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
Sean LimSean Lim 

Separating code into components, reRender not working the same

Hi, I'm trying to separate some of my code into components so I can re-use them throughout different pages. Right now my pages has a section that has a posting section and a feed list section. Once I post, the feed list (FeedListPanel) is reRendered and the new post is then shown (think like a forum). Once I move the posting section to its own component, however, I can still post, but the FeedListPanel is reRendering but not showing the new content. I know it's reRendering because I put in a javascript alert and it's firing every time. I'm not sure what exactly made this stop working once I moved it out into a component. At first I thought it was because the reRender was being called from within the component, but it doesn't seem to be the case. Any thoughts?