Thank you, the tree solution does not appear as it will work as it take up to much screen space. The other link looks like it might be what I want but I only see a way to add items to a group by manually adding each item. I am loading the list via a jqxDataAdapter, is there a way to assign the group with this method?
$("#FiscalYearSelectBox").jqxDropDownList({
checkboxes: true,
displayMember: "FiscalPeriod",
height: "25",
selectedIndex: 1,
source: new $.jqx.dataAdapter({
dataFields: [
{ name: "FiscalPeriod" }
],
dataType: "json",
url: "GetFiscalPeriods"
}),
valueMember: "FiscalPeriod",
width: "200"
});