In my Salesforce record, I have an object that has a picklist called "Type" with 3 options: Alpha, Beta, Charlie. In a custom Visualforce page, I want to have:
Alpha Sample Text Sample Text Sample Text Sample Text
ALPHA button/linkBeta Sample Text Sample Text Sample Text Sample Text
BETA button/linkCharlie Sample Text Sample Text Sample Text Sample Text
CHARLIE button/link
where each of the "button/link" sections is a separate HTML button or can be an anchor link. Is there a way so that if I click on one of these buttons/links I can have it update (quicksave) "Type" with the corresponding value?
Note: At the top of the page I have an apex:inputField tag for the picklist and a "quicksave" button already. I just want to also be able to update it with these potential buttons/links.
The only way I can think of to do it is to use JavaScript to simulate picking an option from the generated dropdown list and simulating a buttonclick of "quicksave" which seems rather gimmicky.