SlickGrid is a specialized JavaScript grid/spreadsheet component optimized for high performance, even with many thousands of rows of underlying data.
0
votes
0answers
13 views
ignore html tags in jquery slickgrid
I have a slickgrid similar to the one from this
example.
The data comes from the database, and in one column I can have values containing html tags, like "font size=... color=.../>", br/> and others ...
0
votes
1answer
18 views
Scroll SlickGrid only one line, when using keyboard navigation
I have implemented a slickgrid and activated keyboard navigation.
When the users is scrolling down using the down-arrow key and reaches the last of the currently visible rows, the grid loads a whole ...
0
votes
0answers
14 views
How to increase the depth (levels) of the side navigation (menu) bar of slickgrid?
I need to increase the levels (node within node within node) for slickgrid side navigation bar. It seems it allows menus(& submenus) only upto 3 levels. I want to go deeper. Anyone knows how to do ...
0
votes
0answers
26 views
SlickGrid: disable checkbox for specific rows
I have a slickGrid with checkboxes column, built with the help of their selectionmodel plugins etc. That is it's not my custom renderer.
All works fine, but I need to disable (or even hide) ...
0
votes
1answer
36 views
SlickGrid with AJAX sync to XML page
I'm using an implementation of Slickgrid, and it works like a charm.
The Grid is displaying data from a DataView (so that it can be filtered, I haven't implemented editing yet), which is filled with ...
0
votes
1answer
46 views
Problems using fluentlenium with dynamic generated content
I am doing tests with fluentlenium to my application, but some errors are happening. I ‘m using Play Framework and Slickgrid to create my grid. Slickgrid create the grid dynamically in javascript.
The ...
0
votes
2answers
32 views
slickgrid search is not updating sometimes
I am using search filter in slickgrid for dataview model. It works sometimes fine but not always.
For example,
(1) My grid has 4 rows.
(2) When I search for first row, the other 3 rows are ...
1
vote
1answer
36 views
Slickgrid: Using an object's member as a column field?
I have an object which has two members:
num which is just an integer and article which is an object that I get through JSON and has a number of members itself. Now I want to use members from article ...
0
votes
0answers
33 views
SlickGrid V2 column Resize triggers Sort
This may be an artifact but it is quite reproducable (IE only) in the couple Grids I've built since the switch to SlickGrid V2 (never saw this in previous version). When a user Resizes a column, the ...
-2
votes
1answer
83 views
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 ...
0
votes
0answers
42 views
Slick grid column picker , add an icon
I am working on Slick Grid column picker. Right now, right clicking on the header in the grid works but i also wanted to add an icon and bind the icon with the column picker. I am not sure as how to ...
1
vote
2answers
35 views
DataView Filtering ONLY when Changing the Filter
We only want the filtering to be fired only when manipulating the filter, not when editing data.
We are using slickgrid for extensive data entry. One challenge we are having is that we would like to ...
0
votes
1answer
51 views
Slickgrid - dataView.setGrouping is not a function
I am trying to follow the code in the example:
http://mleibman.github.io/SlickGrid/examples/example-grouping
I am getting the error:
dataView.setGrouping is not a function
Am I missing a js ...
0
votes
1answer
52 views
Slickgrid checkbox and filtering problems
I have a slickGrid which is populated with data, and have a first checkbox column added via:
if (info.includeSelectCheckbox) {
var checkboxSelector = new Slick.CheckboxSelectColumn({
...
-1
votes
0answers
47 views
slickgrid complete fork (example 15) with fixed header row for quick filters
I change my obsolete and slow datatables implementation for slickgrid.
I found this amazing and complete fork of slickgrid. I personalize it to fit my old presentation of table, but I cannot find a ...
0
votes
0answers
49 views
Adding multiple items to the dataView after ajax call in SlickGrid
The first time I get data I insert it into the empty dataView with dataViewFoo.setItems(data); which is inbetween a dataViewFoo.beginUpdate(); and a dataViewFoo.endUpdate();. ...
0
votes
0answers
100 views
(Found workaround) SlickGrid add new row, after edit all new row overwritten by the same data
The Grid Setup with DataView
DataView = new Slick.Data.DataView();
Grid = new Slick.Grid('#grid_id' , DataView, columns, options);
Grid.setSelectionModel(new Slick.RowSelectionModel());
...
0
votes
0answers
40 views
Slickgrid date column not loading when grid is inside a jQuery Accordion
I have several slickgrids inside jQuery UI accordions on a page. However, if I define one of the columns to be a date editor column, the grid won't load any columns including and beyond that column.
...
0
votes
1answer
41 views
Vertically align vertical text in SlickGrid header
I am changing the height of a SlickGrid header and rotating the text in the header with the following CSS:
.slick-column-name {
-webkit-transform: rotate(-90deg);
-moz-transform: ...
0
votes
1answer
25 views
How do I create two images in same column within a slickgrid?
I am attempting to have a select and delete image in one column of my slickgrid and have been unable to do so. I understand how to do a single image button like so. :
var column = {id:delCol, ...
-2
votes
0answers
68 views
Slick grid and fileupload option [closed]
We are using angularjs,sclickgrid, jquery etc.
One of our requirement is to provide a table which has as file upload option and a text field.
I am not sure this is possible in slickgrid?
Please can ...
0
votes
1answer
16 views
Is there anyway to identify which editor is currentEditor in SlickGrid?
I wanted to identify which Slick editor is being used in the current selected Column. Is there anyway to do this?
0
votes
0answers
37 views
Using the Header Menu Plugin and Enable Sorting
First of all, I just want to say good job with the slickgrid plugin. I love it!
So my problem is that I have implemented a grid with the header menu plugin. However some of my columns that use the ...
0
votes
0answers
37 views
Slick Grid Allow Clicks to go through to Formatter objects
I have something called a panel formatter i made which just places some inline configurable html elements in the cell.
However, currently the click into one the elements is being blocked by slick ...
0
votes
0answers
60 views
Slickgrid: Get event on value change.?
How to get Event on value change in slickgrid. I find "grid.onclick" in examples, but it guess as it name shows it will get fire every time when i click on gird.
For example, I have a grid with three ...
0
votes
2answers
61 views
SlickGrid not displayed
Newbie here..Currently developing my 1st ASP.NET web application. I am trying to use SlickGrid. Somehow the grid doesnt appear at all, even the header is not displayed :-(
Below are my Index.cshtml ...
0
votes
1answer
38 views
slick grid ensure data not getting called
I am using a slick grid with the following javascript. The problem is that the control never goes to ensureData(). Any ideas?
grid.onViewportChanged.subscribe(function (e, args) {
alert('1');
...
0
votes
1answer
29 views
slickgrid viewportchanged event not firing
Can't get slick grid viewportChanged event to fire. It is supposed to be fired on page load. Any ideas?
javascript:
grid.onViewportChanged.subscribe(function (e, args) {
...
0
votes
0answers
115 views
SlickGrid Custom Filter
Searching through here and it doesn't seem to find the answer.
I setup a pretty complicate grid with SlickGrid.
The search function is in a custom toolbar. Which I write it up the call the grid ...
0
votes
1answer
60 views
How to make multiple click by using Angular e2e?
I'm writing an E2E tests where I'm using grid.
While I'm trying to make a single selection with the grid, it works fine.
element('#wrapped_grid .item-id-2 .slick-cell').click();
But I couldn't ...
0
votes
1answer
65 views
slickgrid - How to loop through rows which are outside canvas?
I am having some markers on map and same number of rows in slickgrid?
What I want is when a marker is clicked the id of marker is matched with all rows and corresponding row should get selected.
...
1
vote
1answer
49 views
How to validate a change in a cell and determine whether that change should be comited?
I have something like so:
CELL #0 CELL #1
------------------------
|start_date | end_date |
|----------------------|
|1/1/2012 |1/1/2013 | ROW#0
|----------------------|
I would like to ...
0
votes
0answers
29 views
Getting SlickGrid drag events to fire when drag starts from a Text Editor
The SlickGrid plug-in for doing cell range selection does not allow for a range selection to start from a cell where the editor is active.
Example: see ...
0
votes
1answer
106 views
How to use grouping and aggregates on Slick Grid
I'm trying to understand how grouping and aggregates work with the slick grid. I have some data that I want to group in a tree like structure somewhat how it's done on this examples page:
...
1
vote
0answers
28 views
How do I determine which DataView generated an event?
I'm implementing filtering via the HeaderRow of my grids, and I've run across a problem I can't seem to solve.
All the examples that show dataView Event handlers employ global variables to identify ...
0
votes
0answers
52 views
SlickGrid: 2 questions: 1) change the orientation of column labels and 2) display d3.js elements inside cells
New to SlickGrid here, and have a couple questions:
1) Is it possible to change the orientation of the column labels? I would like to display a grid without horizontal scrolling, and the data can ...
0
votes
0answers
41 views
Slickgrid pager within Dynamics CRM having one icon per line
I am developing an application which runs within Microsoft Dynamics CRM (MSCRM). Essentially in this environment web resources including HTML, JavaScript, CSS and image files are stored within the ...
0
votes
0answers
66 views
SlickGrid headerCssClass not working
I have added a column with headerCssClass property but that css style is not applied to my grid header. Im using slick grid version 2.1. Please help.
<div class="formGrid" id="formCardGrid">
...
0
votes
3answers
95 views
How can I change Slickgrid editor button css class (or any dynamically created button)?
I am trying to change the editor button (save, cancel) css in Slickgrid. How do I apply a css class to the button item as shown below?
<body>
...
0
votes
0answers
135 views
Slickgrid select checkbox in the header column
How can I select the header checkbox in a slickgrid? In my slickgrid I can only select all columns, I can't select the checkbox in the column header.
var variablesRows = [];
var columns = [];
...
-1
votes
1answer
71 views
In SlickGrid, how do I collapse grouping via javascript [closed]
I want to apply grouping in SlickGrid. I want collapse them via javascript.
This is my script http://pastebin.com/MbXgQ22Y (Dead link)
dataView.collapseGroup(0);
collapseAllGroups();
But it isn't ...
0
votes
0answers
57 views
SlickGrid onSelectedRowsChanged still be fired when cell changed in the Same Row
In my project, the onSelectedRowsChanged event can be fired when rows changed, but it also can be fired when acitve cell changed in the same row, actually we dont want it happened. It is tested in the ...
0
votes
1answer
135 views
Simple SlickGrid's Data not displaying
Just started using SlickGrid, Not sure if I am missing something, but this simple code doesn't seem to work. It is displaying headers, but not the rows.
Grid Code:
var grid;
var data = [
{ ID: 1, ...
0
votes
1answer
57 views
slickgrid can't scroll to the bottom
i don't know what happen. i just load my data with json and applying paging with dataView. the data is displayed well but i can't scrolling to the bottom. so when i click "25" to show 25 rows, the ...
0
votes
1answer
47 views
SlickGrid: tabbing in/out of grid
I'm trying to use two editable slickgrid instances as a data entry form, and I'd like to be able to tab from the last cell of the first grid to the first cell of the second grid, but the following ...
2
votes
1answer
215 views
Slickgrid or Flexigrid [closed]
My colleagues and I are arguing which grid plugin is best and we each have valid arguments, but we can't seem to reach a conclusion. So here is my question, why is slickgrid better than flexigrid?
0
votes
1answer
208 views
slickgrid get index of row by it's id
Is there a way to get the index of a row (row-index in the visible grid) by it's ID, which will also work with a sorted/grouped grid?
I am trying to use the function scrollRowIntoView from Slickgrid, ...
1
vote
1answer
191 views
SlickGrid exclude slick-group (Group Header) row when sorting
I'm using SlickGrid with Groupings and need to sort the data within each Group but leave the Grouping (group header row) in the default order.
Sorting seems to sort the column data and then reorder ...
0
votes
1answer
33 views
Is there any way to connect AWS to my Slickgrid?
I am looking forward to connect my Slickgrid to any of the AWS databases. After doing a lot of googling I haven't found much so I've decided to ask SO.
Is it simple to do it? If so, how would I do it ...
2
votes
2answers
112 views
SlickGrid selection issues on sort
When using SlickGrids selection and sorting together I found that the selection is storing the index of the selected rows rather than storing the selection for the data you selected.
How can I fix ...




