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
-1
votes
1 answer

Slickgrid checkbox event issue

I'm using Slikgrid javascript library and I'm following this tutorial to make a grid with checkboxes : exemple4 the code used is below :
oussama kamal
  • 1,027
  • 2
  • 20
  • 44
-1
votes
1 answer

SlickGrid - Drag column header outside table

Is there any way to tap into dragstart/end event of the SlickGrid? I am trying to take the text from the SlickGrid column header and drop on the other object.
Mutant
  • 3,663
  • 4
  • 33
  • 53
-1
votes
1 answer

Call "this" outside of init

I get this message Uncaught TypeError: Cannot call method 'getIdxById' of undefined When I try to do var idx = this.dataview.getIdxById(dataContext.id); in a var function outside my init. How can I access this? This is just the basic skeleton…
Doc Holiday
  • 9,928
  • 32
  • 98
  • 151
-1
votes
1 answer

Pattern matching filtering in slickGrid

I like the functionality of the Filter in this example: http://mleibman.github.com/SlickGrid/examples/example4-model.html where filtering is done by matching pattern i.e if i enter 2 in search box , I will get 2 , 21, 22 , 222 ....2* But my…
user2519644
  • 21
  • 1
  • 6
-1
votes
1 answer

Is slickgrid supports only json and xml formats.?

Is slickgrid supports only json and xml formats. I want to implement the slickgrid in rails 3.x my data's are in hash format? any idea on this?
-2
votes
1 answer

Apply Pagination on cellclick event in slickgrid using angular

Page onload slickgrid is loaded and Pagination is working but on cell click slick grid dataset value updated (new data added) but pagination value not update(didn't updatePagination). How to again apply pagination on click event. backendServiceApi…
-2
votes
2 answers

Add the class for specific row of existing table

I want to add the class to existing table row to change the row color when row is clicked. For now my code is like this below. Subscribe onClick for grid. grid.onClick.subscribe(function(e, args) { var row = self.grid.getDataItem(args.row); …
whitebear
  • 11,200
  • 24
  • 114
  • 237
-2
votes
1 answer

How to display data from my database in Slickgrid?

I started using Slickgrid recently but have not gotten in depth with it. I'm trying to connect it to my own MySQL database but I haven't gotten any luck doing so. I want this for displaying purposes so all I need (for now) is to show up the data in…
randomizertech
  • 2,309
  • 15
  • 48
  • 85
1 2 3
84
85