This is a migrated thread and some comments may be shown as answers.

[Solved] Remove filter dropdown values

1 Answer 21 Views
Grid
This is a migrated thread and some comments may be shown as answers.
This question is locked. New answers and comments are not allowed.
Suhas
Top achievements
Rank 1
Suhas asked on 11 Sep 2012, 07:46 AM
Hi,

I telerik MVC Grid. The first column shows the status, which is evaluated and populated from the following enum.

public enum ClientDisplayExecutionStatus
        {
            Purged = -3,
            Archived = -2,
            Deleted=-1,
            Pending = 0,
            Processing = 1,
            Failed = 2,
            Completed = 3,
        }

The filter has dropdown implemented which contains these enum values. But I want show the selected enum values based on the user type. Can you please suggest me where is the right place to update the filter dropdown?

Thanks,
Suhas S

1 Answer, 1 is accepted

Sort by
0
Petur Subev
Telerik team
answered on 14 Sep 2012, 07:16 AM
Hello Suhas,

Basically you cannot configure the filter menu on the server side. You can customize it on the client  the same way as in this code library project.

http://www.telerik.com/community/code-library/aspnet-mvc/grid/custom-filter-ui.aspx 


Kind regards,
Petur Subev
the Telerik team
Check out the successor of Telerik MVC Extensions - Kendo UI for ASP.NET MVC - and deem it for new ASP.NET MVC development.
Tags
Grid
Asked by
Suhas
Top achievements
Rank 1
Answers by
Petur Subev
Telerik team
Share this question
or