You need to sign in to do that
Don't have an account?
westjohn
Which Type of List Passing to VisualForce page?
In Data tables(http://datatables.net/) Which Type of List using to query the records in Apex Controller ?
Because I am using Normal List to pass the page datatables told "No records Found".. But I have 5000 records in my List..
How can i display my values in page and which type of list will i use?
Hi,
I've tried this on my dev org and this is working fine for me. I'm using account standard object to showing records on VF page. Here are the code for that.
Controller Class:-
VF Page:-
Result:-
[If you got answer from my post please mark it as solution.]
Thanks, Kapil
All Answers
Hi,
I've tried this on my dev org and this is working fine for me. I'm using account standard object to showing records on VF page. Here are the code for that.
Controller Class:-
VF Page:-
Result:-
[If you got answer from my post please mark it as solution.]
Thanks, Kapil
Thanks Kapil..
I have another one doubt in data tables..
I am using following type of example in my page..
http://datatables.net/release-datatables/extras/Scroller/large_js_source.html
In above example We passed nearly 50000 records to page...
So in My page i have nearly 2,098 records..
I am using Normal list to query the values and passing to page... I got the following error..
When i also performing DML operation in the List..
Collection size 2,098 exceeds maximum size of 1,000.
How to pass all records to Page and also How To perform DML operation?