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

How do i disable ui-grid events?

I want that when i select all rows in a grid doesn't call the event rowSelectionChangedBatch, how do i do this? $scope.gridOptions.onRegisterApi: function(gridApi) { gridApi.selection.on.rowSelectionChangedBatch($scope, function() { …
A. Horst
  • 78
  • 8
0
votes
1 answer

How to customize a ui-grid table?

I am trying to customize the grid menu for angular ui grid By default the menu icon appears in the top right corner of the table. But i want to show it on the top left corner of the table. How can i configure this? Also I want to change the default…
steffi.m
  • 101
  • 2
  • 11
0
votes
1 answer

Twice firing with external filtering in angular ui-grid

I have finished this issue, however, I am faced with the problem of a weird triggering of applied filters. Let me try to explain to you. The first filter request looks like: ?$orderby=id-&pageSize=25&pageNbr=1&$filter=eventTypeId==7 OPTIONS 200 xhr…
antonyboom
  • 1,161
  • 2
  • 17
  • 44
0
votes
1 answer

Set a footer template on Angular UI grid when group feature is enabled

Can you tell me how to set a footer template on Angular UI grid when group feature is enabled ? Here is the Plunker. I have tried like this.But it's not working.I need to set a Total Properties on the Balance column. footerCellTemplate: '
Sampath
  • 63,341
  • 64
  • 307
  • 441
0
votes
1 answer

Refreshing data in ui-grid

In my screen I have a ui-grid that need be load when the user click in button "search". I'm making this: // Ajax call $("#btn-Pesquisar").click(function () { var form = $('#frm-Pesquisar-Acos-Internos'); $.ajax({ cache: false, …
0
votes
1 answer

In UI Grid, how can I use JSON results from Web API to fulfill the editDropdownOptionsArray option of a field?

In UI Grid, how can I use JSON results from Web API to fulfill the editDropdownOptionsArray option of a field? My grid is filled with data from Web API but I cannot wrap my head around doing this for an edit dropdown field within the grid, where the…
Cody Hicks
  • 420
  • 9
  • 24
0
votes
1 answer

Is it possible to combine external and internal filtering in ui-grid?

I am using 'useExternalFiltering' in angular ui-grid. Is it possible to set 1 column to still filter internally (sort out based on the table data)?
orizis
  • 166
  • 2
  • 15
0
votes
2 answers

grid.appScope is not working with paging

Here code Creating edit button on every row. var statusTemplate = ' '; /**
{{row.entity.StudentID}}
**/ …
user2960398
  • 363
  • 4
  • 19
0
votes
1 answer

Is it possible to hide the checkbox column when enabling multiSelect?

Is it possible to hide the checkbox column on the left when enabling multiSelect? I would just like to enable the multiSelect via Ctrl, I don't need the checkboxes. Thanks!
Dhinnesh Jeevan
  • 489
  • 2
  • 7
  • 22
0
votes
1 answer

Odd ui-grid bug with

I'm experiencing what seems to be a bug in Angular's ui-grid. My index.html page has this at the top: When I run the app, the column headers of the grids scroll of the page: Now, if I remove the brackets, like this:
Bob Horn
  • 33,387
  • 34
  • 113
  • 219
0
votes
0 answers

Angular digest cycles crash IE 11

I have an issue where I have to display one of two ui-grids depending on a selection by the user. The problem is using the 'if' statement causes Angular to run several digest cycles. This is not a problem in Chrome, but in IE 11, it crashes the…
Rani Radcliff
  • 4,856
  • 5
  • 33
  • 60
0
votes
1 answer

Set background color of selected row in Angular UI Grid

I have searched everywhere on Stackoverflow and github but haven't been able to find a solution to this problem and I hope someone can show me the right direction. I'm using Angular UI Grid for my project and so far everything is going good. I'm now…
Yash Kapila
  • 261
  • 7
  • 17
0
votes
0 answers

angular ui grid exception : build cannot find module '@angular/core'. How to resolve?

I am using angular 1.5.0 . I installed angular-ui-grid through Bower. This adds multiple files and folders to the ui-router folder. If I try to build the solution this throws multiple errors in .ts files : Build cannot find module '@angular/core'.…
Avishekh Bharati
  • 1,858
  • 4
  • 27
  • 44
0
votes
1 answer

Column Order with ui-grid-grouping

i'm struggling with the Ui-Grid. I am using the grouping option to group my results. This works pretty fine, but in the documentation of this feature Grouping you can find the following statement: Optionally (and by default) grouped columns are…
Patrick
  • 11
  • 1
0
votes
3 answers

UI Grid RowTemplate color based on cell value

I am using below rowTemplate. I want to apply the css class "ui-grid-invalid-upload-row" when the Valid ==true. Somehow, it is not working.
Parag Patil
  • 93
  • 2
  • 15