I have the following code in my view:

<apex:commandLink data-role="button" action="{!someAction}">
<apex:param name="someVar" value="someVarVal">
</apex:commandLink>

The code does not work because commandLink does not take the "data-role" attribute.

How can I pass a parameter like I am with the second line, but also have an attribute like "data-role" on the rendered link?

link|improve this question

feedback

1 Answer

I've never found a way to put extra attributes into VF tags, your best bet IMO would be to add some javascript which runs on page load and then use JQuery's .attr() method to add the attribute to the component.

Something like the following (assuming you've included jquery through a static resource)

<apex:commandLink styleClass="myLink" action="{!someAction}">
    <apex:param name="someVar" value="someVarVal"/>
</apex:commandLink>

<script type="text/javascript">
    jQuery.noConflict();

    jQuery(document).ready(function(){
        jQuery(".myLink").attr("data-role", "button");
    });
<script>

You'll notice I've used a class instead of ID here, this is simply because SFDC generated IDs include symbols which need to be escaped for use with jQuery, and I find this is just the easier and cleaner solution to use (albeit probably slightly slower).

link|improve this answer
1  
Pretty sure class="myLink" should be styleClass="myLink". Otherwise, this is pretty much the solution I use for this type of problem as well. +1. – jkraybill Nov 7 '11 at 1:12
Absolutely right, have modified it. Always screw something up when I type in code samples on the fly! – LaceySnr - Matt Lacey Nov 7 '11 at 4:38
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.