Default for Radio buttons

Default for Radio buttons

I'm trying to set the value of a radiobutton in on load() but it doesnt seem to work. I think this was working fine before, but stopped working. Actually, it seems to work intermittently - is there a delay between a script edit and when it takes effect? e.g., edit the script and change the default value and see if it shows up right away. shift-refresh your browser to be sure.

http://creator.zoho.com/egutshall/sandbox/


form Data
{

must have Grade
(
type = radiobuttons
values = {"Good", "Better", "Best"}
)

on load
{
set Grade = "Better";
}
}