I am looking for something like <rich:popupPanel>
in RichFaces 4, but then for RichFaces 3. I haven't found anything like in documenation. There is only <rich:modalPanel>
which doesn't suit my needs, because it has problems displaying my datamodel in table. The selection doesn't work, it always returns no rows selected. If I put my table component in <rich:panel>
or <rich:togglePanel>
, then it works fine.
Is there any popup window excluding <rich:modalPanel>
in RichFaces 3?
I dont have 50 reputation to ask you more details in a comment, so i will answer directly hoping this is what you're asking about.
I think you mean that your problem is that the content of the ModalPanel is not rerendered dynamically. but for this you can wrap your table (or the components you want to update) in an
<a4j:outputPanel>
withajaxRendered="true"
In my code I have something like :
that opens the modalPanel :
So my content is updated with the results of my
timelineBean.doGenerateLog
method each time i open the modalPanel .