We use cookies to give you the best experience on our website. If you continue to browse, then you agree to our privacy policy and cookie policy. Image for the cookie policy date

Dropdownlist cascading with an autocomplete control

Hello, I would like to use a dropdownlist cascading like in this exemple (http://mvc.syncfusion.com/demos/web/dropdownlist/cascading) but with an autocomplete for the second control.
In the example we can select a group in first control and select a country that be contained in the selected group but I want to enter the first letter of the country to find it.

Thank's for your help.
Cholet

1 Reply

AP Arun Palaniyandi Syncfusion Team March 15, 2017 12:36 PM UTC

Hi Cholet,    
   
Thanks for contacting Syncfusion Support.  
 
Currently it is not possible to cascade between the DropDownList and Autocomplete controls. But we can achieve this requirement manually using the ClientSide “select” event of Dropdownlist. And then in AJAX call take the value from the argument and then pass the to the code behind and do the filtering in the server side with the passed DropDownListValue. Finally in the AJAX success will get the JSON data and  then pass the value to data Source from controller using this object
 
 
CSHTML: 
 
@Html.EJ().DropDownList("groupsList").Datasource((IEnumerable<groups>)ViewBag.datasource).DropDownListFields(f => f.Value("parentId").Text("text")).ClientSideEvents(e => e.Select("onselect")).WatermarkText("Select") 
 
   <script> 
        function onselect(args) { 
            $.ajax({ 
                url: '@Url.Action("AutocompleteFeaturesNew", "Autocomplete")', 
                data: { searchstring: args.value }, 
                type: 'POST', 
                dataType: "json", 
                success: function (result) { 
                    var data = eval(result); 
                    var obj = $('#autocomplete').data("ejAutocomplete"); 
                    obj.option("watermarkText", "select a Country"); 
                    obj.option("dataSource", data); 
                } 
            }); 
        } 
    </script> 
 
Controller: 
 
public JsonResult AutocompleteFeaturesNew(string searchstring) 
        { 
            if (searchstring == "") 
            { 
                return null; 
            } 
            else 
            { 
                var Data = SearchData(); 
                var search = from n in Data where n.Country.ToLower().StartsWith(searchstring.ToLower()) select n; 
                return Json(search, JsonRequestBehavior.AllowGet); 
            }            
        } 
 
Please find the sample below for your reference: 
 
If the above sample and details do not meet your requirement, please give us more information that will help us provide the solution.        
Regards, 
Arun P. 


Loader.
Live Chat Icon For mobile
Up arrow icon