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
6
votes
1 answer
How to use Custom Event (not Event Emitter) without `strictTemplates` to complain about `$event` not being a Custom Event type?
I created an Angular library, named Angular-Slickgrid, which is a wrapper of SlickGrid which is an old JavaScript/jQuery library and I can use any of the Custom Event sent by SlickGrid without any issues as shown below (at this point all is…

ghiscoding
- 12,308
- 6
- 69
- 112
4
votes
2 answers
Problem with using a defined TypeScript Generic Type in an external function using the Type T
I'm trying to add more Generic Types to my Open Source library Angular-Slickgrid which is a Data Grid library.
I defined an interface for the Column Definitions which can have multiple Type Column, I'm adding a new Generic Type to this Column…

ghiscoding
- 12,308
- 6
- 69
- 112
2
votes
0 answers
Angular slickgrid auto resize column by content not working after doing force fit column check & uncheck action
In angular slickgrid, I am trying to implement force fit column & auto resize column feature with two button click. When I click force fit button, the column of slickgrid fit into the window size. And when I click the auto resize button, disable the…

Janisasri Sathasivam
- 43
- 3
2
votes
0 answers
In the slick grid list section header menu pop-up is not scrollable
I have an angular-slick grid with an enabled header menu option. I want to scroll down and use the other option in the slick grid header menu. But we cant able to use the scrolling option. This is an issue I'm facing in the slick grid header…

Janisasri Sathasivam
- 43
- 3
2
votes
0 answers
How do i make bootstrap tooltip align properly to the text it is referring to?
So the problem i am facing is that ,
When the user is hovering over a column which has text exceeding the column width , the tooltip is showing to the mid point of the text when the column will be expanded to see the full text.
I am using a standard…

chepeharshit
- 43
- 1
- 7
2
votes
0 answers
"JQuery not defined" throwing error after installing angular-slickgrid
First let me clear one thing I have gone though https://github.com/ghiscoding/angular-slickgrid/wiki/HOWTO---Step-by-Step and followed each step which is mandatory required. Anyhow let me show you what step i have followed
Installed angular…

ResolveError
- 135
- 1
- 20
2
votes
2 answers
angular slickgrid date format change only display in grid
this.columnDefinitions = [
{
id: 'edit',
field: 'id',
excludeFromColumnPicker: true,
excludeFromGridMenu: true,
excludeFromHeaderMenu: true,
formatter:…

Glen
- 321
- 4
- 15
2
votes
0 answers
Display the parent and child list records using angular SlickGrid
I am new to SlickGrid. I have to display the parent and child list records using SlickGrid. By default slick grid should display the parent records. There should be action to expand and collapse the child records in the parent record. When I click…

Murugan
- 49
- 3
2
votes
0 answers
How to add custom property in SlickGrid grouping?
For my project I'm using draggable grouping. My requirement is that I should hide the column from the grid once it is grouped and add
it back again to the grid once it is removed from the grouping. I'm doing this work inside onGroupChanged event…

Rajkumar
- 131
- 5
2
votes
1 answer
sgOnSelectedRowsChanged() event emitted multiple times when used with draggable grouping Angular-slickgrid
Draggable grouping and check box selector are enabled. If we click the select all checkbox when the grid is grouped with some column(s), the sgOnSelectedRowsChanged() event is emitted multiple times until all the selected check-boxes become…

Santhosh Vadivel
- 53
- 3
2
votes
1 answer
Angular slickgrid multiselect editor field needs to remove the focus while pressing ok button without changing data
I am using angular slickgrid to display my data and also for inline editing data. In table inline edit working fine but some exceptional cases are present. For multiselect editor the cell change callback not called while i am pressing ok button…

Nelson Gnanaraj
- 176
- 1
- 13
2
votes
3 answers
Double Click Inline Edit Page Navigation Issue
In Slick Grid I am facing this issue.
Case: For Double click on the cell, the editor model should open and for the Single-Click on the cell, Navigation to Other pages should happen.
Issue: When I double click, two times single-click is called So the…

Manikandan K
- 51
- 5
2
votes
1 answer
Merge the angular slickgrid header columns into single header column
In angular slickgrid, i want to merge the multiple column header like column span functionality for rows. Column span applicable for slickgrid row. So i tried with columnGroup property, the header columns are grouped but that grouped column shown in…

Nelson Gnanaraj
- 176
- 1
- 13
2
votes
1 answer
In Slick Grid inline edit I can't able to get the entire object
I am using angular slickgrid for showing my data. When I am trying to edit the slick grid record, I will get the changed fields only I need the entire object. I have given the sample data.
Columndefinition :
this.columnDefinitions = [
{
…

Manikandan K
- 51
- 5
2
votes
1 answer
Get all the edited rows from Angular slick-grid on save all button click
I have an Ionic application where I use inline edit using Angular slick-grid for editing the gird. In my case, the user will make all the necessary changes and finally on the "save all" button click all the edited have to be updated in the DB. I…

Santhosh Vadivel
- 53
- 3