BExIS.Web.Shell.Areas.DCM.Controllers.FormController._AutoCompleteAjaxLoading C# (CSharp) Method

_AutoCompleteAjaxLoading() private method

private _AutoCompleteAjaxLoading ( string text, string id ) : System.Web.Mvc.ActionResult
text string
id string
return System.Web.Mvc.ActionResult
        public ActionResult _AutoCompleteAjaxLoading(string text, string id)
        {
            ISearchProvider provider = IoCFactory.Container.ResolveForSession<ISearchProvider>() as ISearchProvider;

            return new JsonResult { Data = new SelectList(provider.GetTextBoxSearchValues(text,"all", "new", 10).SearchComponent.TextBoxSearchValues, "Value", "Name") };
        }