| Author |
Rendered and Updated
|
Dario Sarcevic
Greenhorn
Joined: Mar 10, 2012
Posts: 5
|
|
Hello!
I am new to JSF and I found something what I dont understand well. I would be very thankful if some could explain me what is difference between updated and rendered?
Thanks in advance.
Dario
|
 |
Tim Holloway
Saloon Keeper
Joined: Jun 25, 2001
Posts: 14491
|
|
"rendered" means that a graphic element is drawn on the resulting webpage. If you set "rendered=false" on an element, that element (and its childred) will not be displayed.
"updated" isn't actually a formal JSF term, but all it means usually is that the web page is re-drawn. AJAX uses a concept known as "partial page updating" to redraw only a section of the page without erasing and redrawing the whole page.
When a page (or page parts) is updated, the rendered= values for the elements being updated will be applied according to their current values. So you can use a partial page update to show and hide a section of a page.
|
Customer surveys are for companies who didn't pay proper attention to begin with.
|
 |
 |
|
|
subject: Rendered and Updated
|
|
|