Hi,
I would like to provide variable row height depending upon the content size. is it possible in Slickgrid? Can you point me towards any examples.
Thanks,
Some cells in my SlickGrid table have myClass class.
I added a tooltip for them like this:
$(".myClass").hover(// Mouse enters
function(e) {...},
// Mouse leaves
function() {...});
It works fine, but if I scroll the table to the bottom, and then scroll it back to the top, the tooltip…
I have an application (using SlickGrid) where I need to get the column name or id at any time when user clicks on a cell (this pulls up a menu specific to the data in that column/cell). Grid works fine initially but if the column is moved (drag/drop), the column name/id does not follow the drop but remains mapped to it's initial column position.…
I am making a slick grid and need the ability to add rows with a code column. For this to be possible the code column needs to be editable for the entire table.
I am trying to work out a way that I can confirm the edit with a standard javascript confirm popup box. I tried putting one into the onedit event within the slickgrid constructor and…
How to write such functions and bind them to two buttons like "add row" and "remove row":
The now working example code only support adding new row by editing on the blank bottom line.
<!DOCTYPE HTML>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<title>SlickGrid…
Hi,
I am a newbie using SlickGrid. I have searched some of the sample apps out there but I am still stumped. If anyone can refer a sample or tutorial on SlickGrid using Asp.Net doing the following:
Get data via JSON
Implement paging, sorting, searching
Pass the selected rows key to code behind for processing or call a codebehind…
I know that there is no API to remove the header row, but I'm sure it can be done by modifying some CSS. Any ideas ?
For example, here: http://mleibman.github.com/SlickGrid/examples/example4-model.html
I have a grid (slickgrid) which creates and destroys rows on the fly.
I know jstree uses .jstree-draggable to find the external drag targets, but applying them to the grid rows doesn't work - such that I've thought of using the grid drag, and on finish of the grid drag I want to call the jstree "drag_finish": function (data)
…
We need to periodically migrate Excel reports data into Drupal nodes. We looked at replicating some Excel functionality in Drupal with slickgrid, but it wasn't up to snuff. The Excel reports people don't want to double-enter their data, but their data is important to be in this Drupal site.
They have hundreds of Excel…
I'm getting to the point on an app where I need to start caching things, and it got me thinking...
In some parts of the app, I render table rows (jqGrid, slickgrid, etc.) or fancy div rows (like in the New Twitter) by grabbing pure JSON and running it through something like Mustache, jquery.tmpl, etc.
In other parts…