Dojo Toolkit IEでラジオボタンの動作がおかしい

自分の場合、

<style type="text/css">@import"/scripts/dojo/dijit/themes/tundra/tundra.css";</style>

としているので、tundra.cssの中で

.dijitCheckBoxInput {
/* place the actual input on top, but all-but-invisible */
opacity: 0.01;
}

となっているところの 0.01 を 0 に変更して、問題解消しました。

.dijitCheckBoxInput {
/* place the actual input on top, but all-but-invisible */
opacity: 0;
}

情報源 > CheckBox and RadioButton display wrong status in IE9 and IE10.