Questions tagged [igx-grid]

Display and manipulate tabular data with the Ignite UI for Angular Data Grid. Quickly bind your data with very little coding or configuration. Features include filtering, sorting, paging, templates, movable columns, and the ability to edit and update data. User actions are easy to understand and can be controlled programmatically.

igx-grid is a data grid Angular UI component, part of Ignite UI for Angular

https://www.infragistics.com/products/ignite-ui-angular/angular/components/grid.html

38 questions
1
vote
1 answer

Batch editing is not a known property of igx-grid

I want to enable batch editing for a igx-grid to allow commitment of edited rows to a database. But I get the error: error-batch I already have IgxGridModule imported in app.modules.ts. Why I get this error? Here is my grid.
ivs
  • 133
  • 7
1
vote
1 answer

Adding new row to igx grid using igx-action-strip

I am trying to create a igx grid table with an edit-button, similar to this example provided by Infragistics Angular Grid Row Adding Example
ivs
  • 133
  • 7
1
vote
1 answer

Update SQL database when Igx Grid cell is edited

I have an Angular project and igx grid with editable rows. The grid data comes from SQL server database. Is it possible to update the database when cells from the igx grid are edited? Is there any tutorial (because I am searching all day and did not…
ivs
  • 133
  • 7
1
vote
1 answer

Is there a way of adding Badge to the column header of an Ignite grid?

I have an ignite grid with 5 columns. One of the columns displays if a customer is authorized to order something or not. Basically it's one of three strings: Pending approval Approved Unauthorized. What I want to do is keep track of the number of…
AR17
  • 39
  • 4
1
vote
1 answer

Not able to get sorting event from IgniteUI / igniteui-angular grid

I need to apply alphanumeric sorting on grid but not able to get sorting event from grid.
1
vote
1 answer

error message when trying to update date inline edit with igx-grid

I am getting an "ERROR TypeError: value.toLocaleDateString is not a function" when I double click to do inline edit. An example…
wil
  • 853
  • 2
  • 10
  • 24
1
vote
1 answer

How to template cell in igxGrid?

I am starting to work with igx-grid and I have templated cells with combobox as below:
Monika
  • 51
  • 3
1
vote
1 answer

Column sorting issue in date field with dd/MM/YYYY format in angular ig-grid

In igx-grid, When we apply sorting in ascending and descending order with dd-mm-yyyy format, so sorting is not working with actual date, month and year wise. and only apply date wise sorting. When we apply sorting in ascending and descending order…
1
vote
2 answers

IGX grid drop-down with key value pair

I am loading grid columns dynamically which is around 100 columns and each column have type either its text or drop-down, In case of drop-down I have a data in form of key value pair like, when I implement the grid the bonded value key display in…
Nazir Ahmed
  • 615
  • 4
  • 14
  • 29
1
vote
1 answer

Using input controls in column header with Ignite Grid

Using Ignite UI for Angular Data Grid and I want to make an editor for the name of a column. However, the grid control seems to disable any input controls I put into the header template. How can I enable input controls in the header template for my…
Grax32
  • 3,986
  • 1
  • 17
  • 32
1
vote
1 answer

How to execute event when grid is 'done'

Both the data and the table columns I want to display are input properties in my module. Now I want to be able to give my column configuration data a flag that makes it so, that those columns are initially autosized. Finding the right columns, and…
Sophor
  • 11
  • 3
1
vote
1 answer

How to change Column Index of IgxGrid dynamically?

I need to apply user settings on IgxGrid. What I am trying is that whenever a user reorders columns, I am saving the column indices in my database and next time when the user opens the same grid; I need to show the same settings on grid which he…
0
votes
0 answers

Igx-grid Column Visibility Changed event showing wrong value

I am trying to code some actions based on a change to column visibility. when executing a (columnVisibilityChanged)="visibilityChanged($event)" method and selecting a column to make visible, the $event arguments show a newValue based on the old…
Ted Herrlich
  • 159
  • 1
  • 5
  • 13
0
votes
1 answer

When you have an igx-grid that is paginated, how can you navigate to a row on a different page than the one you are on?

I have the code to navigate to a specific row based on the primary key index: public scrollToRow(index: number){ let row = this.grid.getRowByKey(index); if(index != null || this.grid != null ){ if(row == null){ …
Ted Herrlich
  • 159
  • 1
  • 5
  • 13
0
votes
0 answers

How to merge cell Dynamically using igx-grid in angular

Grid should look like this I don't know how to do? Will someone explain to mi I am new in igx-grid