Update « Page « JSF Q&A





1. How to update a value displayed in the page without refreshing    stackoverflow.com

I have this 3 fields in a JSF page

<h:inputText id="val1" value="#{managedBean.val1}"/> 
<h:inputText id="val2" value="#{managedBean.val2}"/> 
<h:outputText value="#{managedBean.result}"/>
And i also have a backing bean with this attributes:
@ManagedBean
@RequestScoped
public class NewOfferSupportController {

   private ...

2. How to use PeriodicalExecuter on page load to update div in JSF    stackoverflow.com

I'm trying to use an instance PeriodicalExecuter to update a div element but can't seem to get it to work. What I want to do is change the text in the ...

3. How to update a page automatically after an action of another user?    stackoverflow.com

In my web application there's a page where users can post messages. The problem is a user always has to click a button 'get messages' to see the messages other users ...

4. DataGrid: update cell without refreshing page    coderanch.com

I have created a datagrid from a javabean, and it works great. My only problem is that I need to change values in specific cells without refreshing the page. How do I get a reference to an object that represents a row in the grid, so that I can call the setxxxxx() method? When I have done this, how do I ...

7. jsf page that does not update values according to the model    coderanch.com

Hi I'm using a JSF page with facelets technology, JSF 1.2 with RichFaces components. The problem is, I have a datatable with two columns some inplaceInput's in the first column at the right. I also have some buttons, which are ajax commandbuttons. One of the buttons is supposed to change only the first column with zeroes, and put the old values ...

9. Page Forward Does not Update Url    coderanch.com

Being farely new to jsf but having done some work in servlets and jsp i am a bit confused regarding the concept of page fowarding in jsf Now in Servelts I know there were basically two ways to forward to another page 1-request.getRequestdispatcher("PageName.jsp").forward; //One way 2-response.sendRedirect("www.somesite.com"); //Two way phenomenon Each of the above way updated the URL anyways i am a ...