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
1
vote
1 answer
Export excel and csv with clickable link (single and multiple urls) using angular slickgrid
I am using angular slickgrid to export excel and csv, and also try to export single & mutiple url values against single cell. Any solution to format cell as hyperlink for single and multiple urls.
Code which I wrote for export
import { Component,…

Sharann Nagarajan
- 29
- 2
1
vote
1 answer
Slickgrid header menu sorting is not working properly
In my case, Once I clear the column sorting and try to resort to the Ascending by the slick grid header menu. During this action, the column values are shuffled, again and again.
I don't know the reason why sorting is not working properly in the…

hari
- 47
- 2
1
vote
1 answer
GroupBy header row is missing in the angular slickgrid?
In my case scenario, I have multiple slickgrids in one layout.
In that layout, based on some condition show and hide the slickgrid.
For that slickgrid hiding time, other slickgrid presented groupBy header rows are missing.
Image:
HTML code:

Rajkumar
- 131
- 5
1
vote
2 answers
How to hide and show a column in Angular Slickgrid
Based on some condition I need to hide a column in slickgrid depends upon the user criteria and after user required, We need to visible the column in a slickgrid. So initially i have to hide a column by using hideColumnId, In this hideColumnId…

hari
- 47
- 2
1
vote
0 answers
While reorder the column in slickgrid, the header menu frozen column funtionality not working
While reorder the column in slickgrid, the header menu frozen column functionality is not working.
The below error thrown in console:
zone-evergreen.js:172 Uncaught TypeError: this.sharedService.visibleColumns is not iterable
at…

Rajkumar
- 131
- 5
1
vote
0 answers
Async validation is possible in Slickgrid inline edit feature
In Slickgrid inline edit, we try to validate the data based on some criteria. But criteria check need some modified or existing data from database. so before validate will fetch the criteria needed data from database. This data fetch process is…

hari
- 47
- 2
1
vote
1 answer
Does the current version of the Angular-Slickgrid support the DomSanitization
Does the current version of the Angular-Slickgrid support the DomSanitization? If yes please help me to do it.
Requirement: From the API call I get the rich text as data, which has HTML elements in it. I need to display the rich text into the grid…

user7880397
- 11
- 3
1
vote
2 answers
How to show icon next to value in cloumn in aurelia slickgrid/slickgrid?
I want to show en edit icon next to value in Amount column. This is because the Amount column is actually editable.But to give that as a hint to user, i want to show some edit icon next to it. How to do that in aurelia slickgrid?
Or maybe there is…

sb32134
- 426
- 8
- 19
1
vote
0 answers
Angular slickgrid column filter box alignment issue
I am using angular slickgrid version 2.19.0 to show my list of data. Here I have a number of columns with filter options. When I scroll the horizontal bar & expand the filter row, the filter area alignment is not matched with each column header. The…

Rajkumar
- 131
- 5
1
vote
1 answer
While upgrade the latest angular slickgrid version facing build issue
I was using angular slickgrid version 2.19.0. After upgrading to the latest angular slickgrid version 2.29.1, facing build issue (ng build).
Here is the error screenshot
Software versions
Angular: 7.3.5
TypeScript: 3.1.6
Node: 10.16.3
NPM: 6.9.0

Rajkumar
- 131
- 5
1
vote
2 answers
How do I get tooltips for column heading in Angular-Slickgrid?
The column heading has class ".slick-column-name"
I added this jquery -
var text = $(".slick-column-name").text();
$(".slick-column-name").tooltip({ title: text });
But it is showing every column name in each tooltip, ( for example ID ,…

chepeharshit
- 43
- 1
- 7
1
vote
2 answers
Add and Remove column inline edit is not working
I have one requirement, Inline editor, Checkbox row selection with add and remove column. In the Angular Slick grid Master source, I am trying the above-mentioned feature by using Example 3 page. I have added a checkbox option in the grid options…

Manikandan K
- 51
- 5
1
vote
0 answers
Export excel file without grouping options in angular slickgrid
I have enabled the excel export feature with grouping options in angular slickgrid. without the grouping data, the exported file shows the data in table style. While grouping the data in slickgrid, the exported file formed with grouping style. So i…

Murugan
- 49
- 3
1
vote
1 answer
editable and noneditable cell in angular Slickgrid
firstly, want to clear that i want cell editable and noneditable not a row. I already gone through this. Take example of below image .Task0, Task2 should be editable but front row 65, 21 should not be editable and last row task4 and 1 both should be…

TechHelp
- 146
- 7
1
vote
1 answer
Combination of row detail view and checkboxSelector option makes weird behavior in the angular slick grid
I have created the slick grid with row detail view with checkbox .Its working well on row expand action.But row detail view not visible When i expand the row and click the checkbox in the grid
Expected behaviour :
When rows are expanded to detailed…

Murugan
- 49
- 3