Questions tagged [ag-grid-validation]

31 questions
0
votes
0 answers

ag-grid -- column grouping collapsed columns ignored when selecting or pasting or copying

how to select ,paste & copy collapsed data in column grouping in ag-grid?by default ag-grid ignoring collapsed columns . i want collapsed columns also to be taken into account . Ms Excel has these feature of selecting collapsed columns also . so how…
0
votes
0 answers

Aggrid enterprise version 29 filter popup background color is coming transperent

`` We are using aggrid enterprise version 29 in out project , by default the aggrid's filter popup background coming as transperent and its taking ag-theme-alpine ag-menu {background-color: var(--ag-control-panel-background-color, #f8f8f8);} this…
0
votes
0 answers

Uncaught SyntaxError: Identifier 'myGridOptions' has already been declared

const myGridOptions = { columnDefs: [ { field: 'id', headerName: 'ID', minWidth: 50}, { field: 'text', headerName: 'Title', minWidth: 400 }, ], pagination: true, paginationPageSize: 25, defaultColDef: { flex: 1, …
0
votes
0 answers

Ag-grid filter not working for (rich text(bold.,italic) + normal text comibination

Filter for the ag-grid is working fine for the [noraml-normal] or [rich text +rich text] text but if the column contain the normal text along with the rich text(bold italic) then the filter is not working ...it only filter out the same part (normal…
0
votes
1 answer

AG Grid React Inside a MUI Dialog doesn't apply style

AG Grid React inside an MUI Dialog shows data perfectly but doesn't apply any style Imports import { AgGridReact } from 'ag-grid-react'; import 'ag-grid-community/dist/styles/ag-grid.css'; import…
Praveen Rao Chavan.G
  • 2,772
  • 3
  • 22
  • 33
0
votes
1 answer

AG-grid : Changing the font color of parent row when child row cell is edited

I need to change the font-color of the parent row to red when any cell of the child row is edited. Also the cellStyle for various cells of the child row is displayed in red color when the data is not correct.
Amisha
  • 1
0
votes
1 answer

Ag-grid editable grid adding new row dynamically

I have an editable AgGrid in my functional component as below. On the last column, I have buttons to Add/Remove rows. Now I want the Add row to be displayed only for the last row. I am using cellRenderer for the last column. With the below change, I…
copenndthagen
  • 49,230
  • 102
  • 290
  • 442
0
votes
1 answer

in Ag-Grid how to read all pages specific cell data and store into array

export class AppComponent { gridApi: any; columnApi: any; title = 'AgGridPro'; constructor(private httpClient : HttpClient){ } column = [ { "headerName": "Name", …
Sadina Khatun
  • 1,136
  • 2
  • 18
  • 27
0
votes
1 answer

how to add search bar in ag grid dropdown

without a search bar, I am facing the issue it taking more time to search the required field from the dropdown please tell me how to add a search bar in the ag-grid dropdown (angular )
0
votes
0 answers

Java Script AG Grid getting row node id

I am new to Java Script and I working on implementing AG-Grid. I got stuck at how to get a row node id for selected row in AG grid?
Kumar
  • 1
0
votes
2 answers

How to make all column headers sticky(fixed) in ag-grid in angular while page scrolling?

I have tried this for two days but still I couldn't find the solution can any one please help me in this.
0
votes
1 answer

updating values to server in AG-grid

Here I'm Using .net Core in Server Side and plain vanilla JavaScript for UI AG grid is getting data from the SQL view thru ASP.net Core application. in the Grid all the cells are editable. now i want to have one button on top of the Grid. if the…
Thava
  • 79
  • 1
  • 5
0
votes
1 answer

AG grid: Disable edit rows unless save the one whhich is edited

I have a requirement where, once the row edited in ag grid no other row should be allowed to edit unless the row has been saved. is there any way to achieve it? I am using onRowClick($event) method to put some validation, sample is mentioned…
0
votes
1 answer

AG-GRID Excel Export: Is there any way in AG-Grid to configure Records Export Limit per user?

Is there any way to to restrict Excel Export limit from AG-Grid, so that only allowed number of rows can be exported by a User. For an Example, if Grid is showing 75,000 Records, can we limit Excel to export only 10,000 (or any configurable number)…
kashif
  • 1,097
  • 4
  • 17
  • 32
0
votes
1 answer

Get the edited columns (with data) if performing a full row update using ag-Grid with Angular 6

I have already implemented full row update, but before updating the rows I need to get which columns have been edited and the respective data present in the columns. In order to perform some validations on the data for displaying an error message…