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 to show my data on UI Grid using AngularJS in ASP.NET MVC

I have a page where I can do CRUD operations using ASP.NET MVC with AngularJS. I am showing the my Data in the html table. I want to show them with UI Grid as its in http://ui-grid.info/ Can anyone help me show the data in the UI Grid? This is how…
Barlet
  • 545
  • 2
  • 8
  • 26
0
votes
1 answer

How to add checkbox in header in ui-grid angularjs

I am using ui-grid to display permissions . in cellTemplate displaying checkbox and perfoming updation ..like selected checkbox and all checkbox selection.Now i want to add checkbox in header and once its clicked select all below checkbox and…
Jayashree
  • 107
  • 19
0
votes
1 answer

Conditional Cell template on Angular UI Grid

I'm using Angular UI Grid.Can you tell me how to select a cell template according to the condition? I have tried as shown below. Obviously it is not working hence first one has been overridden by the second one always.Can you tell me how to do this…
Sampath
  • 63,341
  • 64
  • 307
  • 441
0
votes
1 answer

Correct approach to displaying no date

This is my first foray into using angularjs, and heavy client side javascript coding. Mostly I've done it all on .NET server side C# ASPX pages. Using .NET MVC, with angularjs and ui-grid on client side. My MVC controller returns a dataset that has…
Riccarr
  • 103
  • 8
0
votes
1 answer

Remove Double Quotes around the String in CSV file

I am using Angular UI-grid to display data in tabular form and i also added a functionality to export the visible data in CSV file but my problem is that in exported file all the string are enclose with double quotes. Can anyone tell me how to…
0
votes
0 answers

Getting data from PHP to table in Angular

I know it sounds like a repost but I still have to ask how I can do this in my project. I have a class in PHP handling API-calls and receiving data. This received JSON data I would like to pass to Angular and present it in UI-Grid. Furthermore the…
tjarles
  • 113
  • 1
  • 13
0
votes
1 answer

AngularJS and ui-grid error: Multiple directives asking for new/isolated scope

I'm using the sample code from http://ui-grid.info/docs/#/tutorial/205_row_editable to implement a row-editable ui grid. The sample code works fine when I download it and run it locally, but it throws this error when I try to implement it within the…
JMax2012
  • 373
  • 2
  • 6
  • 24
0
votes
1 answer

Angular Ui-Grid Multi Level Nesting

I am using Angular Ui-grid.Trying to achieve multi level nesting in that. Some one have already raised the issue in uiGrid github. But that solution doesn't seems working. I have changed the JSON like this. I am trying to form nested sub grid. Below…
ShaMoh
  • 1,490
  • 3
  • 18
  • 34
0
votes
1 answer

ANGULAR-JS : Angular UI-GRID width changing

I implemented angular ui-grid which should look like: Angular ui-grid But in some scenarios it is becoming like: Shrinked grid I need the solution so that the grid width remains intact like in the first image. It generally shrinks when i hit F12 and…
0
votes
1 answer

Angular UI Grid - Configure menu items globally for all columns

I know I can configure ui-grid to show extra menu items on a per column basis, such as the following. $scope.gridOptions = { "data": "results.values", "columnDefs": [ { "name": "Employee Number", "field": "emp_no", …
Ryan Pelletier
  • 616
  • 7
  • 20
0
votes
0 answers

unable to call function from controller in cell template in angular UI grid

i am using angular Ui grid. i am using cell Template in order to render the data. previously i am using ng-repeat in cell template in order to render the data but ng -repeat causing performance issue in case of large data. so i decided to load the…
0
votes
1 answer

Problems setting up data in UI-grid

I´m struggling with UI-grid trying to set it up properly. I have a datastructure similar to this: var arr = [ {'name': 'a', age: '1'}, {'name': 'b', age: '2'}, {'name': 'c', age: '3'}, {'name': 'd', age: '4'}, …
eggman
  • 111
  • 1
  • 2
  • 10
0
votes
1 answer

ui-grid cell changes from outside

i want to make changes to ui-grid cell value from outside , for eg: on page reload. I have to calculate some form textbox value on page reload and update it to ui-grid cell. on conditions like cell edit I can directly access grid cell on event and…
apps
  • 313
  • 1
  • 7
  • 17
0
votes
1 answer

cellEditableCondition based on rowindex in ui-grid

I want to enable cell edit based on row index columnDefs: [ { field: "Name", name: "Name", enableCellEdit: true, cellEditableCondition: 'row.rowIndex == 2', cellTemplate: '
{{}}
' } but above code is not…
apps
  • 313
  • 1
  • 7
  • 17
0
votes
1 answer

Angular Ui data-grid filtering issue

I'm using the angular ui datagrid framework and I need to filter values with unique identifiers. I have the following code: var column = {name: 'distrito', field: 'distrito.id', type: 'number', displayName: 'Distrito', enableCellEdit: true, width:…