基本的に私は以下のコードを持っており、ページが更新されるたびに、ボタンセットはラジオボタンのように見えます。私は何か間違ったことをしていますか?
<link rel="stylesheet" href="http://code.jquery.com/ui/1.9.2/themes/base/jquery-ui.css" />
<script src="http://code.jquery.com/jquery-1.8.3.js"></script>
<script src="http://code.jquery.com/ui/1.9.2/jquery-ui.js"></script>
<link rel="stylesheet" href="/resources/demos/style.css" />
<script>
$(function() {
$( ".filter_type" ).buttonset();
});
</script>
<asp:RadioButtonList ID="rbtnTimeRange" class="filter_type" name="filter_type" RepeatDirection="Horizontal"
AutoPostBack="true" runat="server" OnSelectedIndexChanged="TimeRange" >
<asp:ListItem Value="1" Selected="True">Today</asp:ListItem>
<asp:ListItem Value="5">MTD</asp:ListItem>
</asp:RadioButtonList>