我有以下与 Jquery Multiselct 结合使用的代码(http://www.erichynds.com/examples/jquery-ui-multiselect-widget/demos/#basic)
由于列表框不带有名为 optgroup 的属性,因此我无法按地区对国家/地区进行分组。其他 SO 问题中讨论的示例不考虑像我在这里所做的那样使用数据源预加载数据。关于如何使用 Listbox 处理选项分组的任何建议?
<asp:ListBox runat="server" ID="Country" SelectionMode="Multiple" multiple="multiple"
DataSourceID="sds_Country" DataTextField="Country" DataValueField="Region"></asp:ListBox>
<asp:SqlDataSource ID="sds_Country" runat="server" ConnectionString="<%$ ConnectionStrings:ConnectionString1 %>"
SelectCommand="Select distinct Country, Region from tbl_Data order by region, country">
</asp:SqlDataSource>