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
2 answers

ui grid columns alignment issue in angular js

In a ui grid in my application there are many columns . But when I try to display them all this what my grid columns look like : The headers are not there but some how the values are there and it is being a big issue. The Grid Options I have are…
StrugglingCoder
  • 4,781
  • 16
  • 69
  • 103
0
votes
0 answers

angularjs ui-grid restrict enableSelectAll to only select entries on the page size

I want to restrict the select all functionlity to not select the entire data set, but instead only select entries displayed on the page. How can this be done? $scope.gridEvents = { enableSorting : true, enableSelectAll: true, …
josh_boaz
  • 1,963
  • 7
  • 32
  • 69
0
votes
0 answers

ui-grid custom pagination for child/expandable grid

I am using the new UI-grid and need to have a custom pagination logic for both the child and the parent grid. There is a directive for the custom pagination and this works well when placed along with the main grid . This directive has a few methods…
rahulmr
  • 681
  • 1
  • 7
  • 19
0
votes
4 answers

How can I wait in Angular JS till when my web service returns

I have two calls to my web service and they will both populate two different sections of grid in the same page . And I do not want to show the page until both the web service calls return . Here is what it looks like : in ABCCtrl.js ............ if…
StrugglingCoder
  • 4,781
  • 16
  • 69
  • 103
0
votes
2 answers

how to map the columnNames to table data and show only that data in uigrid

i get columnNames dynamically with object inside of an property,i just want to show only that property which is inside of that object. this is my columnNames $scope.columnNames=[ {"field":"firstName"}, {"field":"lastName"}, {"field":"id"},//i can…
0
votes
1 answer

Angularjs ui grid displaying confirm dialog by using Angular Confirm

For the last four hours I'm trying to display confirm dialog in the ui grid on the click of delete icon.I'm using Angular-confirm for displaying dialog.Last sell of the grid contains Add and delete icons.Confirm dialog works properly if its not in…
sqlcte
  • 323
  • 2
  • 6
  • 20
0
votes
1 answer

UI-grid: How to access MODEL_COL_FIELD from custom function?

I need to call from external scope a function, which opens the $modal, and on closing the modal, returns the result.
Novitoll
  • 820
  • 1
  • 9
  • 22
0
votes
0 answers

changing cell template property in Angular UI Grid

I am working on Angular UI grid and I am trying to change the cell template property on button click but it is not affecting the UI grid. Here is the punker and when I click on toggleDisplay name it is not getting changed. check…
0
votes
1 answer

bootstrap tooltip is displaying behind ui-grid header

so i have a bootstrap tooltip shows for all cells, but i am having issue that tooltip is hidden behind the grid header. below is my rowtemplate which displays the tooltip. rowTemplate: "
0
votes
0 answers

UI Grid not getting populated in Angular JS

As I am new to Angular , I must have made some silly mistake. Please do explain the reason for the error. I have a modal popup where we can search for a case by giving the input search criteria and hitting on a QuickCaseSearch button.
StrugglingCoder
  • 4,781
  • 16
  • 69
  • 103
0
votes
1 answer

How to export selected data with form post

I'm trying to export selected data from my ui-grid into another web application I'm building which accepts data via a form post. So, I've added a custom menu item with a function... gridMenuCustomItems: [ { title: 'Export to…
Michael
  • 2,546
  • 2
  • 20
  • 26
0
votes
1 answer

How to change the default text of UI-Grid menu option

I'm using UI-Grid framework to show tabular data with server side pagination and the grid menu turned on. On my "exportAllDataFn" I'm making an Ajax call to the server to pull that data, but I'm limiting the number of rows exported to a few…
Sanjeev
  • 1,517
  • 1
  • 18
  • 30
0
votes
1 answer

UI-grid splice last column & bootstrap dropdown in cell

I need to get the data from the ui-grid, so I did it this way: $scope.getData = function() { var a = $scope.gridOpts.data; alert(JSON.stringify(a)); } But it shows some extra column and I wanted to splice it. Have you any…
kipris
  • 2,899
  • 3
  • 20
  • 28
0
votes
1 answer

ui-grid grouping line position and grouping not displayed for hidden cells

I'm trying to display the grouping aggregation result under the cells data, meaning displaying the cells content and then the aggregation results. I've tried several tutorial but without result. Is it also possible to display only the aggregation…
Med
  • 241
  • 1
  • 6
  • 23
0
votes
1 answer

server side filtering with UI grid

There is a default filtering provided by ui grid whcih is enabled using enableFiltering: false in gridOptions. Instead of using this default filtering i was the use the text entered in the filter box for multiple columns, send the filters to the…
1 2 3
99
100