Hi I am using Titanium to create a table of row that can be checked.

I need to write some code in Javascript that allows only one row to be checked and when one is checked the other ones are unchecked.

I am not worried about Titanium part but more about a general solution.

I know I need to setup an array of all the rows. What do I do next when one box is checked? How would I go through the other ones and tell them to become unchecked?

Thanks for your help.

link|improve this question

62% accept rate
1  
Have a quick read of How does accepting an answer work? might get you more of a response ... – ManseUK Jan 5 at 13:08
WhatHaveYouTried.com – Eonasdan Jan 5 at 13:10
feedback

3 Answers

Live example : http://jsfiddle.net/ztm82/

function doit(table, event) {
    if (event.target.nodeName === "INPUT"
        && event.target.type === "checkbox"
        && event.target.checked)
    {
        var rows = table.tBodies[0].rows;

        for (var i = 0; i < rows.length; i++)
        {
            var input = rows[i].getElementsByTagName("INPUT")[0];

            if (input !== event.target)
            {
                input.checked = false;
            }
        }
    }
}
link|improve this answer
Awesome! Thank you so much!! – Leonardo Amigoni Jan 5 at 14:03
feedback

Try something like this:

var checkboxes = document.querySelectorAll('#myTable input[type="checkbox"]'),
    checkboxClickHandler,
    i;
checkboxClickHandler = function (event) {
    var i;

    // only uncheck if target is a checkbox which has been checked
    if (event.target.checked) {
        for (i = 0; i < checkboxes.length; i++) {

            // don't uncheck clicked box
            if (checkboxes[i] !== event.target) {
                checkboxes[i].checked = false;
            }
        }
    }
};
document.getElementById('#myTable').addEventListener('click', checkboxClickHandler, false);
link|improve this answer
jsfiddle: jsfiddle.net/pSzT8 – Nathan MacInnes Jan 5 at 13:21
Slightly updated jsfiddle: jsfiddle.net/pSzT8/1 – Nathan MacInnes Jan 5 at 13:27
Thank you Nathan. Very helpful. This will do!! – Leonardo Amigoni Jan 5 at 14:03
feedback

Mutually exclusive checkboxes? Why not use radio buttons (<input type='radio'>) instead? You'd get this behaviour for free and it would be more intuitive for users.

link|improve this answer
Unfortunately there is no such behaviour for Titanium Mobile. So I have to create it manually. – Leonardo Amigoni Jan 5 at 14:04
feedback

Your Answer

 
or
required, but never shown

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