Jquery Multiselect OptGroup与ASP.Net Listbox

时间:2016-02-16 22:34:46

标签: jquery asp.net listbox jquery-multiselect

我有以下代码与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>

0 个答案:

没有答案