I have a bit of code that checks a list if LI tags which contain radio button input's. I have some clever logic via the Chocolate Chip Javascript framework library to work out when an LI is clicked, it will apply a relevant class to display the radio button has been selected.

However, I want to expand that logic so that it digs deeper into the LI and finds which radio button input is the one that is already selected (prior to any user choosing anything) when the page loads and apply a class to it so that it instantly highlights what is already selected.

I'm a bit new to Prototype so I'm not sure what is the best approach to do this so would appreciate any help you can offer.

So in the case below, I want to pick out button 3.

JSFiddle Link: http://jsfiddle.net/Qw6KA/

HTML:

<ul class="radioList">
   <li>
      <input type="radio" id="radio1" name="radioButton" value="Button 1">
      <label for="radio1">Button 1</label>
   </li>
   <li>
      <input type="radio" id="radio2" name="radioButton" value="Button 2">
      <label for="radio2">Button 2</label>
   </li>
   <li>
      <input type="radio" id="radio3" name="radioButton" value="Button 3" checked="checked">
      <label for="radio3">Button 3</label>
   </li>
   <li>
      <input type="radio" id="radio4" name="radioButton" value="Button 4">
      <label for="radio4">Button 4</label>
   </li>
</ul>

JS (Prototype):

$.RadioButtons = function( viewSelector, callback ) {
    var items = viewSelector + ".radioList li";
    var radioButtons = $$(items);
    radioButtons.forEach(function(item) {
        item.bind("click", function() {
            radioButtons.forEach(function(check) {
                check.removeClass("selected");
            });
            this.addClass("selected");
            this.last().checked = true; 
            if (callback) {
                callback(item);
            }
        });
    });
};

Thanks -JaXL

link|improve this question

70% accept rate
feedback

1 Answer

up vote 0 down vote accepted
$.RadioButtons = function( viewSelector, callback ) {
    var items = viewSelector + ".radioList li";
    var radioButtons = $$(items);
    radioButtons.forEach(function(item) {
        item.bind("click", function() {
            radioButtons.forEach(function(check) {
                check.removeClass("selected");
            });
            this.addClass("selected");
            this.last().checked = true; 
            if (callback) {
                callback(item);
            }
        });

        // Add this bit
        if (item.select('input[checked]').length) {
            item.addClassName('selected');
        }
    });
};
link|improve this answer
Thanks clockworkgeek. That's exactly what I am looking for but when I use that code it's not working. Any ideas why? – JaXL Oct 5 '11 at 9:00
Make sure you're using a browser with a console (all modern ones do now) and put a few console.log(item) type calls in your code. Also from the console try typing $$('.radioList li input[checked]'), you should see a list of checked controls, if not there is a problem with a class name or something similar. – clockworkgeek Oct 5 '11 at 10:29
feedback

Your Answer

 
or
required, but never shown

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