I saw in JSF these is a dataTable that is used to display tabular data. like reports.
I defined a dataTable in page and in backing bean I have a property of dataModel. There is a link in one column. By clicking it can enter an edit page. My table with pagination function, it works fine when I click previous and next page. I click next page, then click one link to edit page, it display the same position data in first page not my current page. As my backing bean is request level. Examples in website always use scope session. How does JSF processing events? With request level, dataTable can not be retrived back, right? -- Anthony Hong

