Questions tagged [angular-ui-grid]

angular-ui-grid is a datagrid written in AngularJS by the AngularUI Team. This is the 3.x version of the former ng-grid. It is a high-performant datagrid using virtualization for rendering rows and really shines when you have lots of rows.

UI Grid is a datagrid written in by the AngularUI Team, no jQuery.

It is a high-performant datagrid using virtualization for rendering rows and really shines when you have lots of rows.

1895 questions
0
votes
1 answer

Angular ui-grid editDropdownOptionsArray depending on current row

I want to have a different dropdown array for each row of my ui-grid. Therefore I need to access the current row. I had something like this in mind but I don't know how to access the current row within columnDefs. Is there an easy way to achieve…
Michael Woywod
  • 448
  • 4
  • 12
0
votes
1 answer

Sorting of uI grid column containing Angular filter

I have recently started using Angular ui-grid. I am not very well versed with the internals of the library. I had a ui-grid column that required to display percentages. SO I added the following filter to my app and used it along with ui-grid…
Saurabh Tiwari
  • 4,632
  • 9
  • 42
  • 82
0
votes
1 answer

Angular ui-grid , add custom message to editableCellTemplate

I need to add a custom error message to cell when it is in editable mode, basically i just need to add message to the editable html template as follow
Dark99
  • 81
  • 3
  • 11
0
votes
1 answer

JHipster Docker Build with UI Grid not showing fonts

I am using JHipster 3.8 with UI-Grid i.e. ui-grid.info when i run the application locally its working fine. But when i deploy to Docker using this command ./gradlew bootRepackage -Pprod buildDocker docker-compose -f src/main/docker/app.yml up i can…
Anchit Pancholi
  • 1,174
  • 4
  • 14
  • 40
0
votes
2 answers

ui grid header menu option

I would like to hide one of the header menus option from ui-grid, I don't want to display "Hide Column" option in enableFiltering enableFiltering: true, enableColumnMenus:false enableColumnMenus:false is hiding entire menu from header which…
Satish
  • 537
  • 2
  • 9
  • 21
0
votes
1 answer

How can I apply my custom validation on a ui-grid cell template

Is there a way to bind custom validation. I would like to bind a method on say ng-keydown to check the input against my set of rules.. How can that be done. I trying calling a $scope function on ng-change and that didn't work. I tried this…
Saurabh Tiwari
  • 4,632
  • 9
  • 42
  • 82
0
votes
1 answer

How to get ui-grid cellClass function called for all visible rows after reorder?

I wrote a cellClass function, rowSpanCellClass, to implement something like HTML rowspan. When a value is repeated in a column where rowSpanCellClass is used, the cells with repeating values will appear to merge vertically. This works fine when the…
0
votes
1 answer

Altering the class values or styles of cells in ui-grid

I have several unique cases inside ui-grid where the cells of certain table contents need additional class, or even style rules assigned, so the appearance for these cells stands out compared to others. Looking through the official ui-grid…
Cameron Kilgore
  • 383
  • 7
  • 25
0
votes
1 answer

Adding custom row-header to ui-grid

I would like to create my own custom column to ui-grid, similiar to select column (column with check mark) on attached picture: Is this possible, what is easiest way to do this?
Antea
  • 177
  • 1
  • 4
  • 10
0
votes
1 answer

Interaction with gridData on ui-grid edit events

I am using Angular ui-grid and am pretty new at it. I receive an array of objects to render data for each row. Each object, hence each row , has a field change:false which marks whether any field on that row has been edited or not. I have kept this…
Saurabh Tiwari
  • 4,632
  • 9
  • 42
  • 82
0
votes
1 answer

Why am I not getting any values displayed in my ui-grid dropdown?

I have this following code for ui-grid column Definition: { name: "carrier_influence_group", displayName: "Carrier influence group", enableCellEdit: true, showSortMenu: false, editableCellTemplate: 'ui-grid/dropdownEditor',…
Saurabh Tiwari
  • 4,632
  • 9
  • 42
  • 82
0
votes
1 answer

I need to display an array of strings within ui-grid. Single row, one row for each ui-grid

I need to display each data from array in a single ui-grid row. Please help me, whether it's correct or not? so data[0] should display in one ui-grid and data[1] should display in another ui-grid, so it looks multiple ui-grid in a single page. but…
Ahalyaa
  • 1
  • 1
0
votes
1 answer

Multiple Grid View using ui-grid

I have a scenario to split the single grid view into multiple grid view, Example: In an array I have 10 data a[10] values for these each data I have to put new ui-grid using angular js. Customer 1 having 10 unique records reg1, reg2, reg2 datas, for…
Ahalyaa
  • 1
  • 1
0
votes
1 answer

ui-grid datepicker not setting the value in angular js

{ "firstName": "Cox", "lastName": "Carney", "company": "Enormo", "test":{ "date": "10/14/2015 02:45:33 AM"} } if I bind the date to the ui-grid datepicker and change the datepicker value of a row it is not reflecting in the…
Thomas
  • 213
  • 5
  • 17
0
votes
2 answers

UI-GRID display json data

At the moment I am retrieving data from the server. [ { id:1, name:demo, request: { id: 1, localCompany: { id: 1 } } }] [{ }, { }] so this is how my json object looks. When I get call the $http service…