Código PHP:
function OZXR()
{
$('#control input[@type=radio]').bind
(
'click',
function()
{
switch(parseInt($(this).attr('value')))
{
case 0 :
HVC();
NOEFVAR();
break;
case 1 :
NOHVC();
EFVAR();
break;
}
}
);
}
function HVC()
{
$('#lv input[@type=radio]').each
(
function (){
$(this).removeAttr('checked');
$(this).attr('disabled',true);
}
);
}
function NOHVC()
{
$('#lv input[@type=radio]').each
(
function (){
$(this).attr('disabled',false);
}
);
}
function EFVAR ()
{
$('form').submit(
function()
{
return(COUNTHVC());
}
);
}
function NOEFVAR ()
{
$('form').submit(
function()
{
return(true);
}
);
}
function COUNTHVC()
{
if(!$('#lv input[@type=radio]:checked').val()){
alert('ALERTA: Para poder editar el contenido de alguna variable debera seleccionarla primero en la lista disponible a principio de p'+String.fromCharCode(225)+'gina.');
return(false);
}else{
return(true);
}
}