# Actualizar componente primefaces desde codigo Java

```java
PrimeFaces.current().ajax().update("nombre_componente");



```

Informacion

{% embed url="<https://www.primefaces.org/showcase/ui/misc/requestContext.xhtml>" %}

codigo del sitio de primefaces

```java
@ManagedBean
public class RequestContextView {
   
    private User user;
     
    @PostConstruct
    public void init() {
        user = new User();
         
        if(!FacesContext.getCurrentInstance().isPostback()) {
            PrimeFaces.current().executeScript("alert('This onload script is added from backing bean.')");
        }
    }
 
    public User getUser() {
        return user;
    }
 
    public void setUser(User user) {
        this.user = user;
    }
 
    public void save() {
        PrimeFaces.current().ajax().addCallbackParam("saved", true);    //basic parameter
        PrimeFaces.current().ajax().addCallbackParam("user", user);     //pojo as json
         
        //execute javascript oncomplete
        PrimeFaces.current().executeScript("PrimeFaces.info('Hello from the Backing Bean');");
         
        //update panel
        PrimeFaces.current().ajax().update("form:panel");
         
        //scroll to panel
        PrimeFaces.current().scrollTo("form:panel");
         
        //add facesmessage
        FacesContext.getCurrentInstance().addMessage(null, new FacesMessage("Success", "Success"));
    }
}
```

.xhtml

```markup
<style type="text/css">
    .ui-log {
        left: 600px;
        top: 100px;
    }
</style>
 
<script type="text/javascript">
    function handleComplete(xhr, status, args) {
        if(args.validationFailed) {
            PrimeFaces.debug("Validation Failed");
        } 
        else {
            PrimeFaces.debug("Save:" + args.saved);
            PrimeFaces.debug("FirstName: " + args.user.firstname + ", Lastname: " + args.user.lastname);
        }
    }
</script>
 
 
<h:form id="form">
    <p:panel id="panel" header="New User" style="margin-bottom:10px;">
        <p:messages />
        <h:panelGrid columns="2" cellpadding="5">
            <p:outputLabel for="firstname" value="Firstname:" />
            <p:inputText id="firstname" value="#{requestContextView.user.firstname}" required="true"/>
 
            <p:outputLabel for="surname" value="Lastname:" />
            <p:inputText id="surname" value="#{requestContextView.user.lastname}" required="true"/>
        </h:panelGrid>
    </p:panel>
 
    <p:commandButton value="Save" action="#{requestContextView.save}" oncomplete="handleComplete(xhr, status, args)" />
 
    <p:log />
</h:form>
```


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://avbravo-2.gitbook.io/trucosjakartaee/overview/java-server-faces/actualizar-componente-primefaces-desde-codigo-java.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
