You need to sign in to do that
Don't have an account?
Btuitasi1
Dynamic "Top" List
I am building a visualforce page based on Idea standard object components. I need to display the 2 most recently submitted ideas (Title, Name, Date), 2 with the most votes (Title, Name, Date), and the top 6 contributors based on number of submissions. I'm sure there is a way to do this with SOQL, but am not too sure about the syntax.
If I understand it correctly, I plug this all in my controller, then call it from my visualforce page?
Thanks for any and all help!
If I understand it correctly, I plug this all in my controller, then call it from my visualforce page?
Thanks for any and all help!
I took the liberty to add one nested ul. Modify/Add more fields as per your need. Note the usage of apex:repeat. You can generate any html element as per your requirement.
--Akram
All Answers
Use this,
The bolded areas are where I would like them to appear as a separate instance. This would not be in a table form.
Thanks again!
I took the liberty to add one nested ul. Modify/Add more fields as per your need. Note the usage of apex:repeat. You can generate any html element as per your requirement.
--Akram
I just want the number 1 record data to fill in the first section and the number 2 record data to fill in the second section. Everything is already pre-formatted. The first section fills out nicely, but I don't want the second record to "repeat" after it. I want it in the second section provided in the html.
Thanks again!
Thanks so much!!