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
How to restrict SlickGrid to make a API call, while clicking or changing compound filters?
I have a SlickGrid Table, in which there are compound filters, currently when i try to change the compound filter (lets say from Equal To to Less Than), then it makes an API call.
I don't want to make an API call, how do i achieve this?
I searched…

Akash
- 25
- 4
0
votes
1 answer
can't able access the service callback subscription of angular-slickgrid
We are currently upgrading the angular-slickgrid from version 2.30.4 to 3.3.2.
During the migration to version 3, we can't access the onPaginationChanged and other callbacks from angularGridInstance as mentioned…

Yeswanth Ravikumar
- 39
- 3
0
votes
1 answer
Angular Slickgrid | How to Enable/Disable checkbox dynamically (Not show/hide checkbox)
export class Example1 implements OnInit {
prepareGrid() {
this.gridOptions = {
enableRowSelection: true,
enableCheckboxSelector: true,
checkboxSelector: {
// you can override the logic for showing (or not) the expand…

vijay M
- 35
- 5
0
votes
1 answer
How can i change slickgrid header background color based on a condition?
I am using a angular-slickgrid = 2.30.2 ,Angular 10, i am using styles.css where i am loading the slickgrid theme through bootstrap .sass file.
i have created a shared slickgrid component and using it in parent components wherever required.
i want…

user14060431
- 1
- 2
0
votes
1 answer
Update grid state in Angular-Slickgrid after grid creation
What is the best way to set a saved grid state after the angular-slickgrid has already been created? The Grid State/Presets - Wiki explains setting the saved state on load by setting the gridOptions.presets. In my case, I would like to update the…

user3920421
- 85
- 1
- 6
0
votes
1 answer
Angular Slickgrid column filter not working on formatted column data
I am using Angular-Slickgrid 4.1.4, Angular 12
In my data source, I have an array collection of objects. I need to display values from that collection object using a formatter property. But column filter is not working on this formatted…

Eshwar D
- 1
- 3
0
votes
0 answers
Angular-Slickgrid, encode special characters while searching
I have noticed this strange behaviour with angular slickgrid where if a search query contains some of special characters like "<" ">" "!" "*", it fails to encode them. Any idea why this strange behaviour is noticed and how to fix it?
Thanks in…

Sekiro
- 1,537
- 1
- 7
- 21
0
votes
1 answer
Cannot use onAngularGridCreated emitter
I have an issue with the Angular Slickgrid library,
To modify the sorting button function I need to use the onAngularGridCreated event, (which, I assume) return the instance of my grid. But when I add the following line to my angular-slickgrid…

NCoding
- 29
- 4
0
votes
1 answer
angular slickgrid latest version(Current) pagination not showing properly
This is my code. I am using version 4.1.1
AngularSlickgridModule.forRoot({
registerExternalResources: [new ExcelExportService()],
enableAutoResize: true,
enableGridMenu: true,
enableExcelExport:true,
…

Ajt
- 1,719
- 1
- 20
- 42
0
votes
1 answer
In angular slickgrid want to provide custom edit icon button when clicking that I need to provide default inline editor with a single click
I am using angular slickgrid to display my data and also for inline editing data. In angular slickgrid Im using a default inline editor using the editor option like the one below
editor: {
model: Editors.longText,
required: true,
validator:…

Keertika Prabu
- 11
- 1
0
votes
0 answers
Angular-Slickgrid | How to get the sum of a column outside the datagrid?
What would be the best way to take the total value of a column and send it to a component or external variable?
Something like this for example:
I tried to find an example on the wikis or a similar issue here but I didn't find it, I apologize if it…
0
votes
3 answers
Why is Angular Slick Grid not rendering CSS?
I have a new Angular 12 project that I am trying to have an angular slick grid grid in. But all the data is piled on top of itself, as shown in the photo.
I'm using code from here and it's obviously creating the table, but not styling it. I also…

HumanHickory
- 464
- 1
- 6
- 19
0
votes
0 answers
provision to pre-validate the angular Slick-grid draggable grouping feature. Also remove specific column from grouping programmatically
I have to add a column after validation from my application. Is there any pre-validation available for adding columns in pre-header for grouping?
And is there any method to remove a particular column from a pre-header?
Software versions:
Angular :…

Anu
- 1
- 1
0
votes
1 answer
For angular-slickgrid ExportToExcel how to remove the html tags
In grid data html tags are there, during the exportToExcel these tags are also getting exported into excel, is there any settings that I can do to export only the plain text? if not how can I implement the exportToExcel withour any html tags.
Here…

user7880397
- 11
- 3
0
votes
1 answer
Filter doesn't work expected when apply on tree data grid in angular-slickgrid
I have a tree structure data angular-slickgrid with parent-child relationship. Whenever I try to filter parent records by typing some values in search box, parent records get filtered but without all of its child records.
I can still see +/- icon in…

Anant Shekhar
- 101
- 1
- 5