I have a data table with binded to a large list. I want to render the data table as that list is fetched, instead of waiting for the entire list to be fetched.
Is this possible?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
That’s not directly possible in standard JSF implementation. I’d look for the solution in another corner: introduce pagination so that you don’t need to wait for zillion of records being fetched, but just only ten, twenty or so. It’ll be fetched much faster. That’s also what decent sites like Google are doing.