angular-ui-grid Questions
3
I want to add some custom field in columnDefs and want to access it from header template.
As an example , i want a field let say showFile
$scope.gridOptions.columnDefs = [
{
name: 'ServiceID',
...
Branks asked 22/9, 2015 at 16:42
4
Solved
I have a list of items in an Angular UI Grid. When I click a row, I want to be taken to a different page. (In other words, each row in the grid will be a link.)
I imagine this must be a very commo...
Bunce asked 13/5, 2015 at 19:52
2
Solved
Having had a good Google, I can't seem to find a CDN link for ui-grid ... is there a reason it's not on a CDN?
Edit: Added to CDNJS Sept. 2015
Cenozoic asked 20/2, 2015 at 9:5
2
I've written my entire Angular app managing to avoid the use of $scope, using the "controller as" syntax instead, to help ease the transition to Angular 2.0 and because I believe this is the more c...
Oregano asked 18/3, 2015 at 4:28
4
Solved
Testing out Angular ui-grid (ng-grid v.3.0). Can not for the life of me find the selected row. I just want to grab the rows or even row ID of row when a user clicks it. Found the top comment here b...
Unconsidered asked 4/10, 2014 at 0:50
3
Solved
I'm trying to use the row saving feature in combination with the expandable grid. The goal is to be able to save sub-grid rows, independently of the parent row.
$scope.gridOptions = {
expandableR...
Ararat asked 29/3, 2015 at 18:38
2
Solved
I have inserted some dummy object in Grid,The data displays in the grid found some issues. Here is My code:
html:
<div class="gridStyle" ui-grid="gridOptions"></div>
js:
$scope.myD...
Iveson asked 27/3, 2015 at 10:51
2
Is there any way I can freeze first column(always display) while horizontal scrolling? As displayed in the below picture, I want to show Title column always while scrolling horizontally
Suburbanite asked 30/7, 2015 at 4:21
3
Solved
The ui-grid example on the official website ( http://ui-grid.info/docs/#/tutorial/209_grouping ) presents a grouping feature, which looks like this:
I would like to have the Grouping menu item, b...
Elberfeld asked 20/5, 2015 at 14:19
2
A better pagination is implemented in ui-grid. The demo looks good. But it is using an unstable version.
When I check the bower packages by
bower info angular-ui-grid
The latest found is #3.0....
Repro asked 3/2, 2015 at 17:18
1
Solved
I've got a ui-grid using the latest version (3.0.0-rc22). In my column definitions, I've setup a cellTemplate to allow linking to a different route. Unfortunately it appears that no matter what I s...
Zaid asked 10/7, 2015 at 17:52
1
Solved
I am using ui-grid in one of my projects and one of the requirement is to hide/show columns in the grid. Hiding columns working well but then how can I re-show the hidden column?
After searching a...
Pagoda asked 9/7, 2015 at 11:25
3
Solved
I'm working on a small frontend application which will show various product shipping data in a ui-grid.
I have the following code:
HTML:
<body ng-controller="MyCtrl">
<p ng-repeat="r...
Spitball asked 9/12, 2014 at 15:49
1
Solved
The ng-grid documentation contains default Header Cell Templates (as well as other default templates).
What is the default header cell template for ui-grid?
Edda asked 6/10, 2014 at 23:32
2
Solved
I'm using an Angular UI Grid in my app. I set enableFiltering to true in the options which made some filter boxes show up above my columns. This is great, but the filters don't work exactly as desi...
Frodine asked 3/6, 2015 at 19:45
1
Solved
I have an Angular UI Grid element. I am periodically adding new items at the front of the data array. I'm only adding a few at a time (like 1 to 5 new items)
I would like the UI Grid to animate th...
Fluting asked 6/3, 2015 at 14:35
2
Solved
If there is a way in ui-grid that I can know a grid is finish updating the rows?(like a filter is being applied etc)? I want to run some function after the grid view changes.
I tried the following...
Benempt asked 27/5, 2015 at 20:6
1
Solved
I was experiencing a known issue with Angular UI Grid where some of my fonts would look Korean in production.
I applied a certain fix by adding the following CSS:
@font-face {
font-family: 'ui-g...
Buttonball asked 18/5, 2015 at 19:40
2
Solved
I would like to create a custom column with a link and call $scope method on ng-click.
There is very similar question for ngGrid (How to call a scope method from a button displayed in ngGrid -in An...
Republicanism asked 23/12, 2014 at 22:6
1
Solved
How do I add image in a angular ui-grid cell.
var app = angular.module('app', ['ngAnimate', 'ngTouch', 'ui.grid']);
app.controller('MainCtrl', ['$scope', '$http', function ($scope, $http) {
$s...
Leggat asked 15/5, 2015 at 19:16
5
I'm new to ui-grid and I'm trying to implement a table in AngularJS as shown in the picture below. I'm trying to select a row and delete it using a delete button on that particular row. The ui-grid...
Elora asked 25/11, 2014 at 9:1
1
Solved
Using ui-grid I want to get a list of all the filtered data rows using the filter.
In the plunker below I have the original data of 500 items filtered down to 61.
Now how do I get a list of those ...
Bohlin asked 9/5, 2015 at 12:35
1
Solved
So I'm trying to get my Angular UI Grid to register a double click event on an entire row to open up a modal. I can start with a toastr toast and go from there though. This is the closest I've come...
Eberta asked 7/5, 2015 at 22:49
1
Solved
I am using the Angular UI Grid to display some data. Sorting is enabled and initialized as well as selecting a single row:
vm.gridOptions = {
enableSorting: true,
enableRowSelection: true,
mult...
Blowing asked 9/10, 2014 at 8:26
3
I looked at the angular-ui modules because I need to implement a grid.
I saw that there is the stable ng-grid and the unstable version ui-grid.
Which version should I use?
Are they very di...
Flytrap asked 6/10, 2014 at 8:4
© 2022 - 2024 — McMap. All rights reserved.