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

Generate menu and set visibility

Hi,first of all thanks for the great component.Is it possible to generate menu from database and set the visibility of each menu item based on role?Are there any example how to create it?Thanks

3 Replies

GA Gurunathan A Syncfusion Team August 23, 2013 10:30 AM UTC

Hi Handoyo,

Thanks for contacting Syncfusion support.

Your requirement of “Display the Menu items based on Role” can be achieved by filtering the list based on Role field.  We have used Generic Drop Down, based on this DropDown value the Menu items will be displayed in the web page. Please refer the following code snippet.

<code>

[controller]

[HttpPost]

        public ActionResult Index(string myDropDown)

        {

            List<GenericListMenu> newlist = new MenuDataContext().GenericListMenu;

            List<GenericListMenu> result1 = new List<GenericListMenu>();

            if (myDropDown == "Team Leader")

            {

                result1 = newlist.Where(c => c.Role == "TL").ToList<GenericListMenu>();

            }

            else

            {

                result1 = newlist.Where(c => c.Role == "TM").ToList<GenericListMenu>();

            }

            ViewData["MenuData"] = result1;

 

            return View(ViewData["MenuData"]);

        }

[View[

@{ Html.Syncfusion().Menu("myMenu")

 

.DataSource((System.Collections.IEnumerable)ViewData["MenuData"])

 

.BindTo(bind => bind

                .Id("ID")

                .ParentId("ParentID")

                .Text("MenuText")

                )              

    .Render();}

 

</code>

We have also prepared a simple sample to show case this behavior. It can be downloaded from the below given link

Menu_DB.zip

Please let us know if you have further queries.

Warm Regards,

Gurunathan



HA handoyo September 17, 2013 01:24 PM UTC

Hi there,i have downloaded the sample code,but it givex me error when i want to run it,it says the ToolController and ToolFeatures not available.Thanks


GA Gurunathan A Syncfusion Team September 18, 2013 01:09 PM UTC

Hi Handoyo,

We regret for the inconvenient caused. We suspect that the error might have occurred due to improper deletion of “ToolsController page”. Please download the modified sample from the link given below,

 Menu_DB.zip

Warm Regards,

Gurunathan


Loader.
Live Chat Icon For mobile
Up arrow icon