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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 6, 20262026-06-06T09:15:11+00:00 2026-06-06T09:15:11+00:00

Is it possible to have a hidden column in slickgrid? By hidden column I

  • 0

Is it possible to have a hidden column in slickgrid? By hidden column I mean I want to save some data for each row, but I don’t want this data to be shown on the grid.

  • 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-06-06T09:15:13+00:00Added an answer on June 6, 2026 at 9:15 am

    There is no implied relationship between the data and the columns in the grid – the two exist completely independent of each other. So your data can contain many more fields than are actually bound to grid columns.

    Example:

    var grid;
    var columns = [
      {id: "title", name: "Title", field: "title"},
      {id: "duration", name: "Duration", field: "duration"},
      {id: "%", name: "% Complete", field: "percentComplete"},
      {id: "effort-driven", name: "Effort Driven", field: "effortDriven"}
    ];
    
    var options = {
      enableCellNavigation: true,
      enableColumnReorder: false
    };
    
    $(function () {
      var data = [];
      for (var i = 0; i < 500; i++) {
        data[i] = {
          title: "Task " + i,
          duration: "5 days",
          percentComplete: Math.round(Math.random() * 100),
          start: "01/01/2009",
          finish: "01/05/2009",
          effortDriven: (i % 5 == 0)
        };
      }
    
      grid = new Slick.Grid("#myGrid", data, columns, options);
    })
    

    Here my dataarray contains fields start and finish but I have chosen to exclude them when creating my columns array.

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

Sidebar

Related Questions

I like the functionality of the Filter in this example: http://mleibman.github.com/SlickGrid/examples/example-header-row.html where each column
In SQL its possible to have fields that cannot contain duplicate data. How is
I have a gridview in which fourth column is hidden which has a panel.
Support that I have this hidden field: <input type='hidden' id='handler' name='handler' value='5534882394' /> And
Consider a gridview row containing two columns... Each column has two textboxes... Onkeypress in
I have a column with with both 'hidden' & 'unhidable' set to true. However,
I believe I don't have to put my code here since this is not
I have a table with a column that I want to prevent certain users
There's some tabular data to be displayed with Sorting possible by the headers. I'm
Is it possible to have the value of a hidden input field as an

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.