Questions tagged [angular-slickgrid]

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.

117 questions
0
votes
1 answer

Angular-Slickgrid Select or Multiselect dropdown Flickers(gets closed automatically) on first Click

Following is the code that I am using 1.I add a new row in angular slickgrid table with below code const newItem = { id: this.dataset.length + this.index, roleName: '' }; // add the item to the…
0
votes
1 answer

how to combine data from two columns in aurelia slickgrid

I have a aurelia slickgrid table with start date and end date and it is fine. Backend api response is in odata format. Now i want to make a new column called Status and status is calculated as :
sb32134
  • 426
  • 8
  • 19
0
votes
1 answer

In angular slickgrid, enablecheckboxselector:true is not working when routing from another page or changing the grid data

I have a dropdown, on change of value in the dropdown I am loading the grid with new data & calling setGridOptions() which sets all the grid options again. I have enablecheckboxselector:true but then also checkboxes are not coming. Surprisingly, as…
aks1993
  • 3
  • 1
0
votes
0 answers

checkboxes get removed if we rebind columndefination in angular slickgrid

I have created demo here.I want to rebind columndefination and its corresponding data on click of button but suddenly checkboxes getting disappear and even if i click on reset button then only checkboxes are not…
ResolveError
  • 135
  • 1
  • 20
0
votes
1 answer

Set enableCheckboxSelector to false based on if condition

I am using angular slickgrid & by default I have enableCheckboxSelector set to true in grid options. But based on value change in dropdown I want to hide checkboxes for all rows so I have…
aks1993
  • 3
  • 1
0
votes
0 answers

How to update filter in odata backend for aurelia slickgrid

This has no effect on backend call request. Any idea why and how to make a new odata request with added filter query. public setFilter(filter: string) { console.log("set filter ", filter); this.filterValue = filter; const odataService =…
sb32134
  • 426
  • 8
  • 19
0
votes
1 answer

Get Selected Row Data in Angular-Slickgrid

How do we get selected row data in angular-slickgrid(2.26). I am able to do that in regular slickgrid this way: grid.onClick.subscribe(function (e, args) { var item = args.grid.getData()[args.row]; selectedFromGrid =…
Nakres
  • 1,212
  • 11
  • 27
0
votes
1 answer

Dropdown not working in angular-slickgrid

I have downloaded source code from here. I have checked demo but single select dropdown functionality not implemented anywhere. so i have modified code for last row "completed". Because i want to implement dropdown functionality on cell…
ResolveError
  • 135
  • 1
  • 20
0
votes
1 answer

How to create custom tooltip with formatter in Angular slickgrid without creating angular component?

Context When hovering on row data i want to show tool-tip with custom-data, I don't want to use Angular components or bootstrap tool-tip instead simple html and css, so that i can use it with Angular Slick-grid formatter I have tried with html and…
0
votes
0 answers

In Angular Slick grid Multi select field is not able to filter

I am using angular slick grid 2.25.1 Version and I Have migrated this version from 2.19.0. I have fixed the compilation error while building the application. Migration Steps followed. Changed Angular slick grid version 2.19.0 to 2.25.1. NPM…
0
votes
1 answer

Keep all row checkboxes & header row checkbox selected or checked by default in Angular-Slickgrid

I am using Angular SLickgrid and want to show all the checkboxes for all rows & also header row checkbox as selected by default (when grid loads). I am able to achieve it partly by using…
aks1993
  • 3
  • 1
0
votes
1 answer

How to show two comma separated values in one column in aurelia slick grid using complex object

I can show Range.width but i want to show the content in this format: Width x Height: 100 x 100 This works: { id:"Range", name:"Fixed Range", field: "Range.width", formatter: Formatters.complexObject, sortable: true, filterable: true,…
sb32134
  • 426
  • 8
  • 19
0
votes
2 answers

Angular 11 + Angular-clickgrid@2.25.0 + Build errors

I have installed latest version of angular-slickgrid in Angular 11 project. After ng build, I have started getting these errors in d.ts files. Could you please help me with the same? Below are the logs from build : ng build ✔ Browser application…
0
votes
0 answers

Automatic resizing of column headers Angular slickgrid

I have a problem with the automatic resizing of the column header and the group column in case we have a very long string. Are there any options in slickgrid that would allow to resize the grid headers to display the entire column headers ? import {…
Hitaway
  • 3
  • 1
0
votes
1 answer

Angular slickgrid edit handler does not trigger on selecting same value from dropdown

I have a requirement in angular slickgrid where I want to edit the row with the same option which in result will update the date on which the update was made. What I actually do is call an API on edit command handler when any changes are made in the…