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
1 answer
angular generate routing link
I'm very new to angular, and I can't figure out how to generate a routing link programmatically without navigating to it.
I'm using angular-slickgrid and I have a custom formatter on some columns that needs to generate some HTML to render the cell,…

Ulrar
- 895
- 8
- 17
0
votes
1 answer
Angular slickgrid column wise remove sort option not working properly
In angular slickgrid, column wise sort asc/desc working fine. But removing sort by column header menu not working properly. When i remove the sort, the dataset should be reset to initially loaded dataview. But it maintaining the last sorting order.…

Nelson Gnanaraj
- 176
- 1
- 13
0
votes
1 answer
Angular-slickgrid cannot read property "hostView" of undefined
Good day fellow devs,
I'm using the angular slickgrid library and I've tried adding the rowDetailView functionality provided.
my problem is that I can click to exspand the view but I can't close the view. as soon as I click on the symbol again to…

Andre
- 41
- 5
0
votes
1 answer
Angular SlickGrid daterange filter not working
I have two date columns in Angular SlickGrid, the column values of the table is based on a class. These two columns are based on two date fields of this class.
I want to display these values as dateTimeShortIso, but use the dateRange filter for each…

Johannes Karsten
- 69
- 1
- 10
0
votes
0 answers
Angular calling a component via constructor failing but works with normal import in typescript file
I'm busy working with the angularSlickgrid library on an Angular project. I created a dropdown component to use inside my grid but here is the problem ... When I try to import the component and call it without a constructor it loads and the…

Andre
- 41
- 5
0
votes
0 answers
How to use force fit columns in angular-slickgrid?
I set forceFitColumns: false to user can to set any columns width
gridOptions: {
forceFitColumns: false,
enableAutoSizeColumns: false
}
1.Set any columns width enter image description here
but if user would like to set ForceFitColumns, then…
0
votes
1 answer
How to set last added row as selected in Slickgrid
I am adding a new row to slickgrid as follows:
this.dataset.push(
{
id: idObjet,
id_objet: idObjet,
name: ElementType[elementType] + '-' + idObjet.toString(),
type: ElementType[elementType],
delete: 0,
…

user2810718
- 71
- 11
0
votes
1 answer
How to add left-side dropdown to choose the operator
I try to add left-side dropdown in filter.DateRange, but i don't know how to do it
I would like to user have possibilty to choose range or single date with '<' , '>' etc in one column.
0
votes
1 answer
How to change label metric in angular slickgrid?
I try to change footer label metric in angular slickgrid.
enter image description here
Code:
this.gridOptions = {
showCustomFooter: true,
customFooterOptions: {
metricTexts: {
items: 'items1',
of: 'of1',
}
}
}
but in result…
0
votes
1 answer
Angular-slickgrid Paginator's item per page is not displayed according to configured values
I'm using angular-slickgrid: "^2.17.11". I'm quite new with it. Here is how I configured the grid option to display the pagination and items per page. In the config I have given the page sizes as [5, 10, 15, 20, 25, 50, 75] but in the UI it is…

Arvind Lairenjam
- 981
- 1
- 8
- 14
0
votes
0 answers
Can't bind to 'columnDefinitions' since it isn't a known property of 'angular-slickgrid'
After installing Angular-Slickgrid I'm having the below issue. Can someone give me some clue? thanks.
My codes are below.
HTML

Sameera R.
- 4,384
- 2
- 36
- 53
-1
votes
1 answer
Error: [SlickGrid DataView] Each data element must implement a unique 'id' property
For users who are getting the mentioned error while using angular slick-grid :
Angular slick grid needs a column named 'id' for each row.

Anish Kutti
- 337
- 2
- 7