Hi
I am trying to show the radio buttons on the webpage if a particular type of file is selected. If the file doesnt have the right extension the radio buttons should be hidden.
SO i tried a few things for it but it didnt seem to work.
FIRST in the table row for the radio buttons i added the "style = display:none" so that the radio buttons are not displayed when the form is loaded
Then in the Javascript if the right file extension is shown I try to display the table row (for radio buttons)
Somehow it doesnt show up.
Can anyone helpon this matter
[Javascript]
if (ext == "doc")
frm.getElementById('ftype').style.visibility = 'visible'
//where "ftype" is the id for the table row
[/Javascript]
Also i tried using "frm.getElementById('ftype').style.display = ''
This doesnt help either
Thanx