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 4617896
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 22, 20262026-05-22T02:11:21+00:00 2026-05-22T02:11:21+00:00

i have an asp.net-mvc web page and i am using jqgrid on the front

  • 0

i have an asp.net-mvc web page and i am using jqgrid on the front end. i want to have an export to excel button that will export the current set of data (based on the current filter).

i already use the toolbar filter so i see that the filter settings are stored in post data but i can’t figure out how to create a method that will pass along all of the filter settings / rules to the server from jqgrid.

i see a bunch of jqgrid “export to excel” example after googling but similar to this example, none of them seem to be passing the filter information to the serverside.

  • 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-22T02:11:22+00:00Added an answer on May 22, 2026 at 2:11 am

    You could put hidden fields inside the Export to Excel form:

    @using (Html.BeginForm(new { action = "ExportToExcel" }))
    {
        @Html.Hidden("sidx")
        @Html.Hidden("sord")
        @Html.Hidden("page")
        @Html.Hidden("rows")
        <table id="list"></table>
        <input type="submit" value="Export to Excel" />
    }
    

    and populate them upon form submission based on the current values:

    $('form').submit(function () {
        var grid = $('#list');
        var sortname = grid.getGridParam('sortname');
        var sortorder = grid.getGridParam('sortorder');
        var page = grid.getGridParam('page');
        var rows = grid.getGridParam('rowNum');
        $('#sidx').val(sortname);
        $('#sord').val(sortorder);
        $('#page').val(page);
        $('#rows').val(rows);
    });
    

    This way the ExportToExcel controller action will take those parameters and be able to filter the list.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Using ASP.NET MVC 3 with C# I have a web page to display a
I have an ASP.NET web page(Not MVC ) (HomePage.aspx) and another page (PRiceList.aspx).I have
I have a Asp.net MVC web application, containing mostly text. I want to put
I have created blank Asp.Net-MVC 3 web application and want to write my own
We will be using custom Silverlight 4.0 controls on our ASP.NET MVC web page
I have a ASP.NET MVC site that is locked down using Forms Authentication. The
I have an ASP.Net MVC web application using forms authentication. I am using OpenID
I have an ASP.NET MVC Web Application that interacts with a SQL Server 2008
I have an ASP.NET MVC page that has left Menu Navigation that is built
I using a reCaptcha on my web page under asp.net mvc. This web site

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.