ng-grid Questions
3
Solved
I have the following settings for my ng-grid in my code :
$scope.gridOptions = {
...
useExternalSorting : false,
}
$scope.watch('gridOptions.ngGrid.config.sortInfo', function (oldValue, newVal...
Deerskin asked 9/6, 2014 at 16:6
4
Solved
I'm trying to implement a grid in angular, using server-side sorting, server-side pagination and server-side filtering. Using ui-grid (unstable), I added ui.grid.paging and got everything up and ru...
Blakey asked 4/12, 2014 at 18:50
3
Solved
I want to enable footers for ng-grid but I want to completely customize it and override what ng-grid does by default.
Basically, I just want a 'Load more...' link at at the bottom of the grid that...
Portuguese asked 8/4, 2014 at 14:33
7
Solved
here is my code:
index.html
<!DOCTYPE html>
<html ng-app="myApp">
<head>
<meta charset="utf-8" />
<title>AngularJS Plunker</title>
<link rel="stylesheet...
Advisee asked 6/6, 2013 at 5:9
4
Solved
My question is an extension to thisquestion
Getting select rows from ng-grid?
plunker - http://plnkr.co/edit/DiDitL?p=preview
I need a row to be selected on page load and I need to avoid listeni...
Purview asked 29/8, 2013 at 7:29
3
Solved
i want to do something that i don't know if it is possible
HTML
<!DOCTYPE html>
<html ng-app="myApp">
<head lang="en">
<meta charset="utf-8">
<title>Custom Plunk...
Mouthpart asked 27/2, 2014 at 15:57
2
Solved
I've tried to achieve the multi column grouping at column header level for UI-Grid with the below approach.
Steps I've followed:
Include the below header cell template, of the UI grid, with anot...
Helenehelenka asked 10/4, 2015 at 14:41
2
In ng-grid, I used to use beforeSelectionChange in the following way:
When the user selects a row, an ajax call is performed. While the ajax call is happenning I set $scope.doingAjaxCall = true, a...
Putnem asked 19/8, 2015 at 16:32
2
Solved
I've created a ng-grid with the following column definitions:
columns: [
{ field: "CompanyPkid", visible: false },
{ field: "CompanyName", visible: false },
{ field: "StartDate", visible: false...
7
My Use Case is pretty simple. A User, after editing a Cell (enableCellEdit: true), should have the data "automatically" sent to the server (on cell blur). I tried different approaches but none of t...
6
I've racked my brain but am unable to figure out how to detect the cell data change in ng-grid.
The following snippet is using ng-change which does correctly call save(), but it's not the
trigger ...
Parrie asked 14/8, 2013 at 18:52
3
Solved
Trying to display a columnvalue from a gridcollection based on another value in that same row.
The user can select/change values in a modal which contains a grid with values. When the modal closes ...
5
Solved
I have a view in an angularjs application in which I want to allow the user to select between various differently configured grids. Ideally I would like to bind the value passed to the ng-grid dire...
6
I'm having trouble with widths of my columns. I don't know what width they will be beforehand, nor do I want to specify each column's width. Is there an attribute that I can use that auto adjusts a...
Epanorthosis asked 18/6, 2013 at 16:24
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 have an ngGrid that shows a few records with basically key / value content. Now, I would like to make some of these records editable.
Using the enableCellEditing features of ngGrid, I can enable...
5
Solved
I'm a little bit confused with Angular and ng-options.
I have a simple array and I want to init a select with it. But, I want that options value = label.
script.js
$scope.options = ['var1', 'var...
Devilfish asked 13/8, 2013 at 6:28
2
A few days ago (may 2015), Google Chrome released a new version (43.0.2357.65 m).
With this new version, an ng-grid feature stopped working:
Symptom:
When I click a row, the row isn't highlighted
...
Chukar asked 24/5, 2015 at 20:42
1
I have an issue let me put it simple in my plunker example I want to know why is my $scope.revertSelection() function not working.
http://plnkr.co/edit/3KXrUuCsSACuhefmyzxN?p=info
Steps:
Sort ri...
2
Solved
I'm new in Angular, and I try to declare gridOption for ng-grid Within a function in costroller.
It cause an error:
TypeError: Cannot set property 'gridDim' of undefined
I tried to solve it usi...
Liverwurst asked 6/6, 2014 at 12:55
3
Solved
I am a beginner of AngularJS. I study the demo of ng-grid and have a question.
index.html
<!DOCTYPE html>
<html ng-app="myApp">
<head>
<meta charset="utf-8" />
<title&...
2
I am trying to achieve an expand and collapse row for ng-grid, basically what we have here http://datatables.net/examples/api/row_details.html if you click the "plus icon" your displayed with more ...
Softhearted asked 12/5, 2014 at 19:13
3
Solved
I am trying to update ng-grid with array splice.
I have a plunk here.
Add button adds new row. Update button updates last item in the array.
Select a row & press update button. Nothing ha...
Chaing asked 8/7, 2013 at 14:45
4
Solved
I have coded the following:
$scope.gridOptions = {
data: 'myData',
enableCellEdit: true,
multiSelect: false,
columnDefs: [
{ field: 'Id', displayName: 'Id' },
{ field: 'Name', displayName: '...
2
Solved
I have set up the following with ng-grid:
var gridData = {};
$scope.gridOptions = {
data: 'gridData',
enableCellEdit: true,
multiSelect: false,
columnDefs: [
{ field: 'testId', displayName:...
© 2022 - 2024 — McMap. All rights reserved.