Hi all,
i ve a function which is responsible for some validations, disabling and enabling of some text boxes and a group of radio buttons ....
now i want to generate the function name to be called from another function using a for loop and then appending the for loop index to the function in question ....
something like this .....
function unCheckRadio(num)
{
var cont = num;
var form = document.angular;
for (var i = 0; i < cont; i++)
{
for(var j = 0; j < form['lim_set'+i].length; j++ )
{
form['lim_set'+i][j].checked = form['lim_set'+i][j].defaultChecked;
}
makeChoice_ang();
}
}
here i want to append the index i to the makeChoice_ang() function ....
tried many ways .... but no go ...
i tried using this .... ();
but this is making it an string ....
Please help me out or atleast point me in the right direction ....
Thanks a million in advance !!