You need to sign in to do that
Don't have an account?
Custom Ideas Visualforce page - "Promote/Demote" code
Hello all,
I am currently re-vamping our Customer Portal and creating custom Visualforce pages for Cases, Ideas, etc. I was able to create the Case page and controller with no problem. I am also able to create the Ideas page and controller.
The one major issue I am having is that I am not sure how to "re-use" the Promote and Demote functionality. Does anyone have any experience with re-using this functionality in a custom Visualforce page? I want to give users the ability to vote on an Idea....but only one time per user....same as current functionality.
I know the functionality is in the ideaList.apexp page, but I don't know how to re-purpose it in my own page.
Thanks,
Jeff
Hi
I have the same requirement.
did you get that solved?
if Yes please share with me
thanks
Hey guys, You can use Vote object to achieve this.
Vote v = new Vote();
v.ParentId= '083540000008bNSAAY'; //Idea Id
v.Type = 'Down';
insert v;
https://developer.salesforce.com/docs/atlas.en-us.object_reference.meta/object_reference/sforce_api_objects_vote.htm