value setting for optiongroup

hiiii…

i have a requirement like…
i have a option group and i am selecting the items and saving the contenet …
when i click the save button the option group have to be uncheccked…

To clear the selection in an OptionGroup, you can call setValue(null). This should work even if nullSelectionAllowed is false. If it doesn’t, den resetting the container (setContainerDatasource(null), setContainerDatasource(container) will definitely do the trick.

thanks …
setValue(null)/… is worknig for that …