well i do find the filed changes after saving , but they dont reflect in the actual check box or radio button, meaning that while the value is in the field , the selection i previously made is not showing in the check box or radio button, i hope this makes sense
aha! I just noticed, you've used CAPITAL letters for the field references in the $select, $radio and $checkbox widgets. What is happening is that the fields are initially being stored in the tiddler as upper case, so things seem to be working at first... but then when the file is saved, the stored tiddler fieldnames are automatically converted to lower case. Then, when you reload, those tiddler fieldnames no longer match the references in the $select, $radio and $checkbox widgets.
TiddlerFields are name:value pairs that make up a
tiddler. Field names must be
lowercase letters, digits or the characters - (dash), _ (underscore) and . (period).
So... to fix your problem, just change your references to lower case.
-e