24 lines
696 B
JavaScript
24 lines
696 B
JavaScript
$(document).ready(function()
|
|
{
|
|
processCheckbox();
|
|
});
|
|
|
|
function processCheckbox()
|
|
{
|
|
$("input:checkbox[name='revision[]']").each(function()
|
|
{
|
|
$(this).click(function()
|
|
{
|
|
var checkNum = $("input:checkbox[name='revision[]']:checked").length;
|
|
if (checkNum >= 2)
|
|
{
|
|
$("input:checkbox[name='revision[]']").each(function(){if($(this).attr('checked') == false) $(this).attr("disabled","disabled")});
|
|
}
|
|
else
|
|
{
|
|
$("input:checkbox[name='revision[]']").each(function(){if($(this).attr('checked') == false) $(this).attr("enabled","enabled")});
|
|
}
|
|
});
|
|
});
|
|
}
|