function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
SalesforceLearnerNewbieSalesforceLearnerNewbie 

Combine commandLink + SelectOption

Hi,

I am wondering whether is it possible to combine these two functions; CommandLink + SelectOption? I get a lot of errors when try to combine it. 

                                            <apex:commandLink value="{!tc}" action="{!showPopup}" reRender="calloutViewer_Controller" /> <br />

                                            <apex:selectCheckboxes value="{!subj}">
                                            <apex:selectOption itemValue="{!tc}" itemlabel="{!tc}"/>
                                            <apex:actionSupport event="onchange" action="{!taskInsert}" reRender="test" />
                                        </apex:selectCheckboxes>