Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 3425096
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 18, 20262026-05-18T06:33:11+00:00 2026-05-18T06:33:11+00:00

I am using the Sort method of the MvcContrib Grid to generate sorting links,

  • 0

I am using the Sort method of the MvcContrib Grid to generate sorting links, e.g.

<%= Html.Grid(Model).AutoGenerateColumns().Sort((GridSortOptions)ViewData["sort"]) %>

I have a need to change the default controller/action that’s generated by the sort method. For example,

defaultControllerName/defaultActionName/?Column=ProductId&Direction=Ascending  

would change to

customControllerName/customActionName/?Column=ProductId&Direction=Ascending  

I haven’t been able to find any existing methods in the MVCcontribution classes that would allow me to customise the links. I’d appreciate any pointers on how to go about altering the default links as I’m still very much a MVC/C# newbie.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-18T06:33:12+00:00Added an answer on May 18, 2026 at 6:33 am

    That’s not an easy task. You will need a custom grid renderer to achieve this and override the RenderHeaderText method:

    public class MyHtmlTableGridRenderer<T> : HtmlTableGridRenderer<T> where TViewModel : class
    {
        protected override void RenderHeaderText(GridColumn<TViewModel> column)
        {
            if (IsSortingEnabled && column.Sortable)
            {
                // TODO: generate a custom link here based on the sorting options
                string text = ...
                base.RenderText(text);
            }
            else
            {
                RenderText(column.DisplayName);
            }
        }
    }
    

    And then specify that the grid should use this renderer:

    .RenderUsing(new MyHtmlTableGridRenderer<Employee>())
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

When using something like object.methods.sort.to_yaml I'd like to have irb interpret the \n characters
I want to sort a vector using std::sort, but my sort method is a
When I sort an Array using the native sort method, which algorithm does Ruby
I'm using the MVCContrib Grid. My controller action accepts 3 parameters, the sortoptions and
i used array collection sort method like below . but still sorting wrongly .
Is there some library for using some sort of cursor over a file? I
I'm just learning how to do things, and want to start using some sort
Using the same sort command with the same input produces different results on different
I am trying to sort a list using delegates but I am getting a
I am using the program below to sort and eventually print out email messages.

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.