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
2 answers

Angular slickgrid dynamic editor collection by every row data

This is my slickgrid dataset [{title : 'foo', prerequisites : true}, {title : 'bar', prerequisites : false}] These are my column definitions: [ { id: "title", name: "Title", field: "title" }, { id:…
0
votes
1 answer

Updated GridOption of the Angular slickgrid

is it possible to update the options showPreHeaderPanel and createPreHeaderPanel by clicking a button. I tried to modify this.gridOptions and I tried to use this.angularGrid.slickGrid.setOptions but the grid doesn't update it. import { Component,…
Hitaway
  • 3
  • 1
0
votes
0 answers

Is there an easy way to launch the built-in Angular-slickgrid column picker menu from a button instead of right clicking

Is there an easy way to launch the built-in Angular-slickgrid column picker menu from a button instead of right clicking? I know how to change which columns are hidden/shown programmatically, but I don't want to make my own UI for selecting them,…
user2026318
  • 173
  • 1
  • 13
0
votes
1 answer

When searching the data in the filter I want to show "No data to display" when search results with empty dataset in Angular SlickGrid

When searching the data in the filter I want to show "No data to display" when search results with empty dataset Context When searching the data in the filter I want to show "No data to display" when search results with empty dataset Expected…
0
votes
2 answers

How to change background color of group header row in angular slickgrid?

[grouping in slickgrid] need to apply different background color to group header row. There is no specific css class for it...I have tried everything please suggest some solution (https://i.stack.imgur.com/2mAI0.png)
0
votes
1 answer

How to change size of pagination icons in angular-slickgrid

i have to reduce size of pagination icons and fonts in order to fit into a slickgrid attached screenshot for ref- enter image description here
0
votes
0 answers

Slickgrid: aggregate at grouping row header

I'm trying to display the aggregates of sum at the same grouping row. Since I'm working with at least four group levels, the aggregate at the end seems a bit confusing (can be hard to distinguish), as you can see here in grey color. Image…
0
votes
1 answer

Angular Slickgrid - customValidator not working for SingleSelect editor

Currently, I have angular-slickgrid with enabled Editors.singleSelect inline editor for a cell. I want to validate the selected dropdown value based on some condition. I referred this example for creating a custom validator but I'm not getting the…
Ranjith
  • 2,779
  • 3
  • 22
  • 41
0
votes
0 answers

Angular Slickgrid reloading data with column headers

On page load, I'm rendering the angular-slickgrid which is working fine. later, I want to change the column header names, removing a particular column & enabling editable columns based on some condition. So I'm modifying the values of…
Ranjith
  • 2,779
  • 3
  • 22
  • 41
0
votes
1 answer

Angular Slickgrid - Load singleselect editor collection based on grid data

I am working on the angular-slickgrid(2.18.7) where the grid has inline singleselect dropdown editor. I want to display the dropdown values based on table data of each row item. { id: 'status', name: 'Status', field: 'status', sortable:…
Ranjith
  • 2,779
  • 3
  • 22
  • 41
0
votes
1 answer

angular-slickgrid hide total rows when grouping

I'm using grouping with a sum aggregator to get it to work, but I don't actually care about the sums or any other info, I'm just interested in the grouping. It's working fine but I'm getting an empty total row per group, which does not look great.…
Ulrar
  • 895
  • 8
  • 17
0
votes
1 answer

Expanding multiple rows in Angular SlickGrid cleans the row expand view of the earlier expanded rows

I'm facing a issue with the Angular SlickGrid row detail feature, when I expand multiple rows and then come back to the earlier ones, they become blank. I checked on the official demo page here and the issue persist there too. Steps to Reproduce Go…
Rathore
  • 256
  • 4
  • 9
0
votes
1 answer

How to display custom angular tag in angular slickgrid custom formatter

In angular slickgrid, I am using custom angular component to display the user info. Is possible to display custom angular tag by using custom formatter. Here i shared my code snippet. export const CspfmAuditInfoFormatter: Formatter = (row: number,…
Nelson Gnanaraj
  • 176
  • 1
  • 13
0
votes
0 answers

SlickGrid Angular issue with width of draggable row grouping when you freeze the column

I have used draggable grouping and column freeze feature of Angular SlickGrid. The width of row group shrinks if any column is freezed. [SlickGrid Demo]https://ghiscoding.github.io/angular-slickgrid-demos/#/draggrouping I had found one more…
abhy
  • 231
  • 6
  • 17
0
votes
0 answers

How to render custom angular component instantly in angular slickgrid

In angular slickgrid, I am using custom angular component to display the user info in a click action. custom angular component rendering takes some time when I scrolling slickgrid the custom angular component showing formatter content for that time.…
Rajkumar
  • 131
  • 5