Angular-SlickGrid is a wrapper on top of the SlickGrid core library and adapted for the Angular framework. The SlickGrid library itself is a specialized JavaScript grid/spreadsheet component optimized for high performance, even with many thousands of rows of underlying data.
Questions tagged [angular-slickgrid]
117 questions
0
votes
0 answers
Grid takes a lot more time to render whenever records count is even slightly more
Whenever api returns even slightly more number of records, angular-slickgrid takes too much time to render resulting whole page to become unresponsive till the grid fully loads.
One of the grids contains approx 50,000 records and it literally takes…

Anant Shekhar
- 101
- 1
- 5
0
votes
1 answer
Angular Slickgrid | How to disable the row selection of checkboxSelector of selectableOverride dynamically
Want to disable the selected row items by updating the gridOptions after some button clicks.
initGridOptions() {
this.gridOptions = {
enableSorting: true,
enableFiltering: true,
enablePagination: true,
enableAutoResize:…

Ranjith
- 2,779
- 3
- 22
- 41
0
votes
0 answers
Cannot manipulate column size by dragging it left or right in angular-slickgrid
I have a slickgrid with few columns in it. I can not manipulate(increase or decrease) the width of any column by dragging it through resizer icon provided by grid itself at the end of every column.
The icon shows up when we take cursor to the end of…

Anant Shekhar
- 101
- 1
- 5
0
votes
1 answer
Angular Slickgrid filtering on multiple columns
Is there a way to filter on multiple columns with angular-slickgrid ?
I have columns showing the same information in different regions, and I'd like the user to be able to use one filter to get any row matching regardless of which region (column)…

Kevin
- 135
- 1
- 9
0
votes
1 answer
How to set a column header's name after rerender?
I need a dropdown next to a column header. I'm doing that by adding an appropriated HTML in columns' name:
Column definition:
{name: "My Column ",...}
This works fine. However, when…

joelpenov
- 1
- 1
- 1
0
votes
1 answer
Flat picker date showing in unexpected format
Expected date format is "DD-MM-YYYY" but shown date format as "YYYY-MM-DD" in UI.
Click here to show UI image
Before opening the date picker, date is shown in the expected format as "DD-MM-YYYY".
When the date picker is opened, the date format is…

R S Moorthi
- 33
- 3
0
votes
1 answer
angular slick grid complex object with nullable string
I am using angular slickgrid
{ id: 'fullName', field: 'user.fullName', name: 'Agent Name', filterable: true, sortable: true, formatter: Formatters.complexObject },
Error shows only if fullname is nullable data from json exist i am getting…

Glen
- 321
- 4
- 15
0
votes
1 answer
How to show up data from Db directly when initializing Angular-slickgrid Tree instead of just after clicking on row header
my first questions so accept my apologies if I do sth wrong ;-)
I am creating an web-app which is using angular-slickgrid Tree so show some data from a database.
Creating the Tree itself is working and I am getting those data in the frontend by…

BadDevMan
- 11
- 3
0
votes
0 answers
Slickgrid grid-menu is not moving along with grid when we load grid in ngb modal and scroll
I am rendering an angular slickgrid on a ngb modal. When I open the grid-menu and scroll vertically the grid moves but grid-menu doesn't move along with grid menu-button. It stays at the same position.
What could be the possible solution for this?

Anant Shekhar
- 101
- 1
- 5
0
votes
1 answer
Angular Slickgrid Tooltip is not updating while value is getting changed in the cell
When the cell width is less than the width required for content, on hovering tooltip is used to show the trimmed value.
But once I hovered over the cell, it will show the current value but in background its changing frequently while that change is…

Akansha Goel
- 21
- 4
0
votes
0 answers
Want to implement ng-bootstrap tool-tip or any other tool-tip on hovering over the angular-slickgrid cell data
I want to implement ng-bootstrap tool-tip(or any other tool-tip if that works) which will be shown when user hover over the data present inside slickgrid cells.
I am also attaching a snapshot of expected functionality below. I need to show similar…

Anant Shekhar
- 101
- 1
- 5
0
votes
1 answer
Dynamically create tabs with Angular slickgrid and ngfor in Angular Slickgrid Example 24
I need a page with tabs similar to Example 24 in Angular Slickgrid, where the content of each tab is a grid. The number of tabs can vary, so I need to make it dynamic.
Hence, I used the example as a basis to find out what to do. First I modified…
0
votes
1 answer
How to set cell color if value is present in Angular slickgrid
I'm using Angular slickgrid and I want to change the cell color if the value is present in that cell.
Note: I want the color only for the cell not the whole row.
Is there any best way to iterate over all the cells and set the color or any equivalent…

Shekhar Patil
- 1
- 1
0
votes
0 answers
How to preselect the values in multiselect dropdown if we get 'ALL' text
Let me tell you my requirement and the approach we followed
We have a table with multiple columns(in our table on selection of one cell value we change the collection of next column in cell click event).
In order to preselect the values in…

user15753753
- 1
- 1
0
votes
1 answer
AngularSlickGrid problems when change the columndefinition
I'm developing an app using the amazing angularslickgrid.
Till now, i haven't got any problem, buy I found out an strange behaviour on it.
In the ngOnInit I wrote the following code:
ngOnInit(){
this.defineGridHeaders();
…

ratact
- 3
- 2