public JsonResult LoadingItems(ComboBoxLoadingItemsEventArgs args)
{
ComboBoxItemList items = GetFilteredCustomers(args.Text, 0);
JsonResult result = new JsonResult
{
Data = new {
Items = items
},
JsonRequestBehavior = JsonRequestBehavior.AllowGet
};
return result;
}