1,291 questions
1
vote
0
answers
71
views
setColumns() causes scroll reset in Angular-Slickgrid after column update
Problem statement:
Calling setColumns() on the grid resets the vertical scroll position to the top. This issue occurs when a column is dynamically updated in inline-edit scenarios in Angular Slickgrid....
0
votes
1
answer
59
views
Use within Shadow Dom - load Grid with element
I'm exploring use of SlickGrid within a ShadowDOM environment which I think requires the new Slick.Grid() function to use a dom element (created in-line) such as
this._gridElement = this._shadowRoot....
0
votes
1
answer
85
views
Angular Slickgrid - Issue with pagination/infinite scroll
I have infinte scroll added in my Angular Slickgrid implementation with page size 10, and also have the drag and drop option enabled by setting enableRowMoveManager:true, everything works fine when I ...
0
votes
1
answer
64
views
How to close slickgrid single/multi select dropdown?
When tabbing through the grid data if a dropdown is encountered it does not allow to tab to the next data cell until we close the dropdown first, we have to click shift+tab to close the dropdown then ...
0
votes
0
answers
35
views
Getting an Error "e is not a function" While Exporting the data from the angular-slickgrid
Issue Summary:
I'm using the Excel export feature of angular-slickgrid (version 7.7.0) to export a large dataset from a grid. However, I'm encountering the following error in the browser console:
e is ...
1
vote
0
answers
41
views
I want to change the GridOptions.Presets.Columns at runtime Angular Slickgrid v7.7.0
After a user button-click dynamically adds columns to the grid, I want the grid to have the same columns shown in the grid as before the new columns were added. New columns should be hidden but ...
0
votes
0
answers
29
views
skickgrid odata v4. An invalid request is being generated
The error appears when using a multiple-choice filter. If you select one option with filtering by empty fields, the query string will not change ($count=true&$top=20). Moreover, if you add another ...
0
votes
1
answer
37
views
slickgrid 5.15.1, autosize columns using slick.remotemodel.js
Using last version of 6pac/slickgrid 5.15.1, with slick.remotemodel.js
calling grid.autosizeColumns() in dataloaded model event
model.onDataLoaded.subscribe(function(e, args) {
for (var i = args....
0
votes
0
answers
47
views
Hide a columns hides select all checkbox
In the exemple below, when hiding a column, the "all chckbox" also is hidden.
Is this behavior normal/intended?
https://6pac.github.io/SlickGrid/examples/example-checkbox-row-select.html
...
1
vote
1
answer
169
views
Cannot find Sortable dependency in SlickGrid: "Uncaught (in promise) ReferenceError: Sortable is not defined" when run with Vite
I have been trying to get SlickGrid to work, first in a svelte application, and then in a Vanilla Javascript one for testing, both built with Vite and where Slickgrid is installed via npm.
Even though ...
0
votes
0
answers
31
views
Embedded Slickgrid Table in Iframe not rendering completely(Iframe-Html)
Video -> here
'Standalone' Slickgrid Table with Frozen columns renders fine but when embedded into a html Iframe (NO SERVER),the table does not render completely.
Missing - TableHeader, Unfrozen ...
0
votes
2
answers
168
views
Minimum working example for Slickgrid + Webpack + Flask
I want to include slickgrid (npm install slickgrid, slickgrid.net) in my Python Flask project and I don't want to use CDN, so I'm looking at a Webpack solution.
I have been following the procedure for ...
1
vote
0
answers
54
views
In the List Filter the starts with operator ( a* ) filters the value with A without entering the values in filter input
In the List Filter after the selection of the starts with operator ( a* ) filters the value which starts with the character A without entering the values in filter input. It happen with all other ...
1
vote
1
answer
477
views
Angular Slickgrid - Filter
"How can I add a new operator in the selection of a Compound Filter, or is it possible to set a custom filter to work like the SQL LIKE Operator?
Example:
I have a column with the following data:
...
1
vote
0
answers
62
views
In Slickgrid,an empty row is displayed while hiding the column which is used for aggregate function
I am using angular slick grid version 4.3.1 to show my list of data. As per configurtion, aggregate function calculation is happening for column while data is grouped based on a field.
1. After that ...