I'm a bit late to the show, but maybe this will be helpful to others:
Create a method in the action
public boolean isRadioDisabled(boolean disabRgt){
return disabRgt;
}
And in your JSP:
<s:radio /*...*/ disabled="isRadioDisabled(disabRgt)" />
Works with Struts 7.