rerender

JSF ReRender support with selectBooleanCheckbox

I have a JSF page on which I want to have a checkbox that, when clicked, will add/remove certain other form fields from the page. Here is the (simplified) code I currently have for the checkbox: <h:selectBooleanCheckbox title="showComponentToReRender" value="#{backingBean.showComponentToReRender}"> <a4j:support event="onsubmit" reRe...

Absolute reRendering using RichFaces

Hey there, My problem is that RichFaces reRender does not work 'under' the current element in the element tree; only upper elements get rerendered. Is there any way to access lower elements with AJAX? Any help would be appreciated! Daniel EDIT I edited this question to a more general one. See revisions if interested in the original q...

RadioButtons renderring

Hi! I'm using EditorGridPanel with different editable controls (ComboBox, DateField...). Also I'm using renderer for two radio buttons in an each cell. The problem is next: when I use one of the editable controls, I need to re-render my radios or something.. How can I do this? Thanks a lot! ...

GWT/GXT: Repaint/Rerender Textfield after setValue with Event

Hi all, i have a problem. I add a widget (LayoutContainer implements EventHandler) with a FormPanel with serveral TextFields with empty values. I have a working Event that should fill some values into some of that Textfields. I tried the following: @Override public void onClientSelected(ClientSelectedEvent event) { Map<String, ...

JSF/RichFaces: ReRendering a tree outside of the form tht was submitted...

I have two forms on a page. One form, on the left, is a tree and the other form, on the right, is a detail form that changes its content based on the node selected in the tree. All interaction with the forms is done via ajax. I have the reRender of the detail form working just fine when the user selects a node in the tree. However, whe...