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
2
votes
1 answer

how to exclusively evaluate angular ui-grid cellTemplate function in attribute value if rendered on viewport?

I am using angularjs and ui-grid with custom cellTemplate. Each cell has an object as COL_FIELD. This object is passed to a function which returns image data uri used in src attribute of cellTemplate so each cell renders an image. I have noticed…
Al Ex Tsm
  • 2,042
  • 2
  • 29
  • 47
2
votes
1 answer

Angular UI Grid reloading cell templates

I can't figure out how to do what's supposed to be very simple. I have 10 columns in my UI grid, they are all editable. My objective is dynamically "disable" or have them be "required" inputs, depending on the options of a scope object. The…
Sedky A
  • 184
  • 2
  • 15
2
votes
0 answers

Configuring ui-grid using webpack

I am new to Webpack and node. Need help in configuring ui-grid. I wanted to bundle angular using webpack, So I installed angular using npm and after installing I could see index.js file inside angular folder in node_modules, which actually export…
Vip
  • 1,448
  • 2
  • 17
  • 20
2
votes
1 answer

angular ui-grid : how to apply filter on group-headers?

when applying filter on group-headers in ui-grid , they disappear . i have the same problem with column-footer when we have it in result of a grouping operation (when footer aggregate function is defined without grouping it is shown correctly with…
2
votes
0 answers

UI-grid : How to dynamically control the height of the ui-grid in terms of screen size and number of records for the table?

I am using ui-grid for one of my application as configured below: HTML:
GOK
  • 2,338
  • 6
  • 34
  • 63
2
votes
0 answers

AngularJS: How to export ui-grid data to excel with custom HTML?

related to this link: AngularJS: How to export ui-grid data to excel? I like this answer but if I have a custom HTMl in grid for example chart : https://plnkr.co/edit/irskqERheTOiFql82QFC?p=preview $scope.gridOptions.columnDefs = [ {…
2
votes
2 answers

angular js ui-grid double click on row not working

I want to call a function myFunc on doubleclick of ui-grid row. for that I have used but it is not being called and showing no error. here is the calling part of html :
Tilak Patil
  • 71
  • 1
  • 7
2
votes
1 answer

UI-GRID column summation on checkbox change

Does anyone know why when I click on different radio values multiple times, my Dynamic Total value changes drastically? The code below should automatically select the column of checkboxes according to the radio buttons. Not sure why there would be…
UCDaCode
  • 65
  • 7
2
votes
1 answer

Show breakline in uigrid

I'm using uigrid like below: columnDefs: [ { name: 'CA', field: 'CA', displayName: 'CA', enableCellEdit: false } ] the CA column has data like below :
name : Jon >
Job : Barber
even that i…
user2848242
  • 177
  • 1
  • 11
2
votes
1 answer

Custom filter in UI grid to filter exact match

I have created a custom filter in UI - Grid for one column. I want to filter only values which match exactly with applied filters and not contains in. Below is my controller for custom filter: myapp2.controller('activityFilterCtrl', function(…
techprat
  • 375
  • 7
  • 23
2
votes
2 answers

ui grid filtering dropdown

The data in my columns (provided by dropdown) and the filter of a column should match. So I use the same array to populate both. However for the data I can tell ui grid the field names to use for editDropdownValueLabel and editDropdownIdLabel. Is…
user441521
  • 6,942
  • 23
  • 88
  • 160
2
votes
1 answer

ui-grid has duplicate rows

I don't know how this started happening but a ui-grid (project home) on my page (angular SPA) is duplicating 2 rows somehow (and I don't want it to). Refreshing the page (Chrome) has no effect (I have devtools open, with Disable cache checked). For…
Gary
  • 3,254
  • 2
  • 27
  • 30
2
votes
1 answer

$http.get call returning bad data to Angular UI-Grid control

This is my first ui-grid application using AngularJS and nodejs with express framework as the backend. The API is running well and data is coming to the brower, but I´m really confused about the sequence of events and the usage of the asynchronous…
Mendes
  • 17,489
  • 35
  • 150
  • 263
2
votes
1 answer

Filtering inside a cell templates?

I have the following cell template cellTemplate: {{COL_FIELD | row. entity. filter}} But the filers is not working. If am passing directly as string in the template it's working. But in my case the filers are dynamic. Can any one help
kiran Gopal
  • 450
  • 5
  • 17
2
votes
2 answers

Reduce watches created by ui-grid or alternative grid solutions

Apologies if this is a repeated question about ui-grid but I could do with being clear on the options for my particular use case. Other similar questions don't conclusively answer my problem. We are attempting to use ui-grid in a fairly unusual web…
eebsie
  • 396
  • 5
  • 18
1 2
3
32 33