Questions tagged [ui-grid]

For questions related to data grid module for AngularJS which is part of AngularUI.

should be used for questions related to data grid module for which is part of

Usage

<div ng-controller="MainCtrl">
  <div ui-grid="{ data: myData }" class="myGrid"></div>
</div>

References

483 questions
40
votes
3 answers

Angular UI Grid 'gridApi.infiniteScroll.on.needLoadMoreData' doesn't work with changes in data

I am using angular-ui-grid 3.2.5 Scrolling with gridApi.infiniteScroll.on.needLoadMoreData($scope, $scope.getDataDown) is working well, but when we are pushing new data when data changes in grid via $scope.$watch('data', updateGrid), then on the end…
user7043185
  • 401
  • 3
  • 4
36
votes
10 answers

ui-grid symbols issue

I am using AngularJs ui-grid http://ui-grid.info/. While implementing, I get something which you can see in the following img in right corner of the cell instead of dropdown symbols. Which files to include to solve this bug?
Anup
  • 9,396
  • 16
  • 74
  • 138
26
votes
2 answers

Angular UI Grid Scroll Error

I am using ui grid 3.0.6. Until yesterday it was working fine. But there is a problem in Google chrome now.(Version 56.0.2924.87) When I scroll the grid, or click on scroll down arrow it starts scrolling very fast. Couldn't control the speed. It was…
user2644503
  • 1,553
  • 1
  • 13
  • 11
13
votes
3 answers

Row wise tabindex lost focus after few continuous tabs

I have an ui-grid with just 1 column and about 1000 rows. Each row have a textbox in it. I want to navigate through textbox by tab. This works fine about 10 - 15 rows, after that the textbox is losing its focus, then if you press tab again, it will…
Amir Suhail
  • 1,284
  • 3
  • 12
  • 31
8
votes
4 answers

Alternative to ui-grid(doesn't support angular2/4)

I am using ui-grid. We are migrating our project from angular 1 to 2, but ui-grid doesn't have angular 2 support. please suggest free (MIT) license grid alternative for ui-grid.
kiran kumar
  • 81
  • 1
  • 4
8
votes
2 answers

What are the available condition constants under uiGridConstants.filter?

Did I miss the link that documents ALL the available uiGridConstants for uiGrid fields in one place? I was working on columnDefs filter and found out EQUAL does not work. That's when I realized there is no central documentation for all the…
Jenna Leaf
  • 2,255
  • 21
  • 29
7
votes
2 answers

CellFilter is getting called before $http Response in UI-Grid

I am using ui-grid to bind data from Role Table which contains Department Id as PrimaryKey. I am calling Web Api to get all the roles in the table and show in ui-grid. Department Table Role Table My real problem is that I want to convert…
5
votes
1 answer

How to export ui-grid to excel file?

I use ui-grid in my project with angularjs. In my project ui-grid exports content to excel file and it's working perfectly. Here is ui-grid declaration: and here ui-grid definition in javascript: $scope.gridOptions = { columnDefs: [ {…
Michael
  • 13,950
  • 57
  • 145
  • 288
5
votes
3 answers

ui-grid : how to show and position a popup menu div onclick of a row element inside the grid?

I have the below configuration of the UI-grid and menu but I am getting the menu opened for every element shown(i know the problem that same menu is opening for all the items as there is no differentiation in terms of which item's menu to be opened;…
GOK
  • 2,338
  • 6
  • 34
  • 63
5
votes
5 answers

Tooltip property for column header ui-grid angularjs

I am using cellTooltip property of colDef but that does not seems to be working. $scope.gridOptions.columnDefs = [{ displayName: 'Test', field: '_test', cellTooltip: function (row, col) { return row.entity._Number }, cellTemplate: '
Surendra Mourya
  • 593
  • 3
  • 8
  • 29
4
votes
1 answer

What could I do to obtain the rows that are displayed on screen using UI-Grid

I'm using UI-Grid with Infinite Scrolling and I would like to obtain only the rows that are displayed on the screen of a user in order to send them to a modal window for editing (as requested by the user, they want to do this outside of the current…
Nimchip
  • 1,685
  • 7
  • 25
  • 50
4
votes
3 answers

Get selected row of angularjs ui-grid

I've looked at multiple articles on this ui-grid and its giving me fits. I'm trying to get the selected row object. I'm either getting an undefined or can not read property of 'getSelectedRows'. Any help is greatly appreciated. I started with…
Troy Bryant
  • 994
  • 8
  • 29
  • 60
4
votes
1 answer

How to refresh UI-Grid layout after reloading data

I have a problem with Angular UI-Grid (http://ui-grid.info/). Grid is implemented in modal window that appears after user clicks button. Service works that way: User selects data set to prepare and clicks button. After clicking button website sends…
Zychoo
  • 625
  • 2
  • 8
  • 25
3
votes
0 answers

RadioButtons in Ui-Grid

I am using Ui-grid in angularjs. I would like to add radiobutton as first column in the grid and also need to remove some particular columns from each like Id , IsDeleted etc. Following is the plunker I am using. I have to check on a button click…
Sana Ahmed
  • 462
  • 3
  • 25
3
votes
1 answer

Why Angular UI-Grid is not working with angular updated version 1.6.5?

I am facing a problem which is, my Angular ui-grid is failed to load data in it's grid when I am using updated version of angular JS. It's working fine with angular lower version of 1.5.0 however, not working with 1.6.5. Additionally, it's not…
Ananda G
  • 2,389
  • 23
  • 39
1
2 3
32 33