Questions tagged [slickgrid]

SlickGrid is a specialized JavaScript grid/spreadsheet component optimized for high performance, even with many thousands of rows of underlying data.

SlickGrid utilizes virtual rendering to enable you to easily work with hundreds of thousands of items without any drop in performance. This is achieved through virtual rendering where only what’s visible on the screen plus a small buffer is rendered. As the user scrolls, DOM nodes are continuously being created and removed. These operations are highly tuned to provide optimal performance under all browsers. The grid also adapts to the direction and speed of scroll to minimize the number of rows that need to be swapped out and to dynamically switch between synchronous and asynchronous rendering.

It is an advanced component and is a bit more difficult to learn and configure, but is correspondingly extremely flexible.

Some highlights:

  • Adaptive virtual scrolling (handle hundreds of thousands of rows with extreme responsiveness)
  • Extremely fast rendering speed
  • Supports jQuery UI Themes
  • Background post-rendering for richer cells
  • Configurable & customizable
  • Full keyboard navigation
  • Column resize/reorder/show/hide
  • Column autosizing & force-fit
  • Pluggable cell formatters & editors
  • Support for editing and creating new rows.
  • Grouping, filtering, custom aggregators, and more!
  • Advanced detached & multi-field editors with undo/redo support.
  • “GlobalEditorLock” to manage concurrent edits in cases where multiple Views on a page can edit the same data.

Useful links

1268 questions
0
votes
5 answers

Slickgrid add new row on demand

Is there a way to add a new row to a slickgrid on demand? For example, have a button on the page that shows the new row when clicked.
user1347790
  • 95
  • 1
  • 9
0
votes
2 answers

Slick Grid - too many clicks on List Box

We have a listbox defined in a slickgrid column. We have the problem that to select an option from the listbox, we first have to select the cell, and then the option can be selected from the list box. Thus the user requires two clicks instead of…
David-Cole
  • 1
  • 1
  • 3
0
votes
1 answer

SlickGrid - Retrieving Data from and saving back to MySQL with PHP

I have looked at the following post regarding retrieving and saving data to and from MySQL with SlickGrid and PHP: How to use jQuery SlickGrid with PHP / MySQL (load server data and save changes) Unfortunately I am very new to both PHP and…
dazzabiggs
  • 13
  • 5
0
votes
1 answer

Invalid Argument Error with SlickGrid

I have a jQueryUI Tabs control on a web page. Each tab contains one or more Slickgrid grids. Sometimes, but with no particular pattern that I have been able to discover, when removing tabs (therefore removing instances of Slickgrid), I get: //…
Eric J.
  • 147,927
  • 63
  • 340
  • 553
0
votes
1 answer

slickgrid: visibility field in row

Is it possible to have a field in my data array with the visibility status of each item and make slickgrid draw only the rows with visibility field true? I have a large dataset and need to delete several items from my array and the delete operation…
rgomesf
  • 702
  • 1
  • 10
  • 20
0
votes
1 answer

save data at server side using slick grid and php

i am adding data using following function grid.onAddNewRow.subscribe(function (e,args) { // code for adding data }); but it is called immediately after adding data in first column. i want to call this function after adding data in…
priyanka patel
  • 617
  • 2
  • 10
  • 30
0
votes
1 answer

delete rows based on checkbox selection in slickgrid

i am taking help of this example: http://mleibman.github.com/SlickGrid/examples/example-checkbox-row-select.html and add a checkbox column to my grid and assign unique_id value of my record to the id of checkbox column i am getting checked columns…
priyanka patel
  • 617
  • 2
  • 10
  • 30
-1
votes
1 answer

jQuery grid for mvc3 razor?

What are the most recommended free jQuery grid for mvc3 razor? has good documents and samples which one is for mvc3? Flexigrid: http://flexigrid.info/ jQuery Grid: http://www.trirand.com/blog/ jqGridView:…
motevalizadeh
  • 5,244
  • 14
  • 61
  • 108
-1
votes
1 answer

access Slickgrid group header text

I'm struggling to find a way to dynamically populate a textbox with the text that appears in a slick grid group header when that group header is selected (clicked). Anything that anyone can offer would be appreciated. I have tried using the row…
Tim M
  • 1
  • 1
-1
votes
1 answer

Error: [SlickGrid DataView] Each data element must implement a unique 'id' property

For users who are getting the mentioned error while using angular slick-grid : Angular slick grid needs a column named 'id' for each row.
Anish Kutti
  • 337
  • 2
  • 7
-1
votes
1 answer

How to get unique row value selected in slickgrid?

I want to render only the selected line by using the invalidateRow(row) function in slickgrid. How can I get the row value of the selected row?
-1
votes
2 answers

Angular Slickgrid- how to update or replace particular cell value with the option selected in context-menu

I'm refereeing this example of slickgrid for context-menu In the image given below I'm using angular-slickgrid along with ngx-contextmenu, where I'm displaying my context menu only when a particular cell is clicked in status column, Based on…
Umair Khan
  • 11
  • 4
-1
votes
1 answer

Slick Grid: Slick grid using with Bootstrap popup calendar issue

I am using slick grid with Bootstrap . I have a slick grid in my page and onclik of a button of that page one Bootstrap pop up will open thenin that popup I have to choose a date to insert in that cell. My calendar is coming but in behind the…
-1
votes
1 answer

I want to hide a text box that doesn't have id from js file. I am not able to figure out, Kindly let me know

There is a text box in header, above the check boxes in slick grid that i want to hide. This text box is not having id so i am not sure how to hide without the id. This is the HTML part
khan88
  • 109
  • 1
  • 2
  • 9
-1
votes
2 answers

Uncaught Each data element must implement a unique 'id' property--- ../slick.model.js

When I bind Json data to slickgrid using ajax call it works but when I bind using dataview it shows "Title" error Here is my code can any one help me Edit:When I remove setItem(slickdata) grid is displayed but data is not populated and this my json…
Chaitanya
  • 95
  • 6
  • 15
1 2 3
84
85