angular-ui-grid Questions
3
Solved
I am trying to enable/disable a button based on the selection of a row on a ui-grid. If there are no rows selected, the button is disabled.
I found this plunkr with the old ng-grid way of firing a...
Stratosphere asked 25/3, 2015 at 3:41
3
Solved
I am new working with the Angular UI-GRID and I need to create external buttons for the exporting features like PDF export and CSV Export similar to this image. Do you have any idea how can I do it...
Cannibal asked 6/1, 2016 at 23:34
4
Solved
I am using angularjs 1.5.0 with angular ui grid 3.1.1.
When I assign gridOptions (passed to the grid directive) object in controller body like this:
$scope.gridOptions = {
data: [{"mock2": 1, "m...
Pickaback asked 27/5, 2016 at 13:42
4
Solved
I can't believe I have to ask this, but how do I download the Angular UI Grid?
From http://ui-grid.info/:
After, I click the Download button (above), I get taken here:
Now what? I don't see ...
Ophir asked 26/9, 2014 at 17:26
2
Solved
I am using ui-grid to display my table in UI. I have a requirement where I don't want table to auto-save the data. I want user to edit all data in a table and click a button to update all the edite...
Marjoram asked 7/12, 2015 at 13:45
3
Solved
I am trying to change the way date is being displayed.
the data is coming as string with the format "Sun May 03 18:04:41 2009"
i looked at the examples, and they were asking me to use
$scope.gri...
Redeeming asked 10/8, 2015 at 21:7
4
Solved
I created ui-grid that has three columns, by default, the column header have a 'v' shaped icon (marked in red circle in the image) :
Here the code and the plunker:
var app = angular.module('ap...
Gwenora asked 19/9, 2015 at 17:29
1
)
first i just wanted to say thanks for this great project.
we integrated ui-grid as part of our table-grid , and for some unknown reason the amount of watches generated by the ui-grid is huge fo...
Internecine asked 20/10, 2015 at 16:55
4
Solved
How do I clear AND refresh ALL of my (general Angular and built-in UI-Grid) filters on a button click?
Background: I have built an application that uses the UI-Grid and takes advantage of the buil...
Adkison asked 16/9, 2015 at 18:37
1
Solved
I have a column binded to a field called state, which has the values: S or L. I want to map this to following:
S => Short,
L => Long
This is how the binding is defined:
$scope.gridOptions = {
e...
Serviette asked 17/3, 2016 at 19:47
4
I can't seem to get any paging or column re-sizing working in the new ngGrid (ui-Grid) rc build v3.0.0-rc.11. It should be really straight forward according to this example: http://ui-grid.info/doc...
Captivate asked 3/10, 2014 at 10:21
3
Solved
With the latest version of ui-grid (v3.0.0-rc.16) it is possible to turn the horizontal and vertical scrollbar off seperately.
I got this working by exchanging
$scope.gridOptions.enableScrollbar...
Saltern asked 14/11, 2014 at 19:50
2
Solved
I tried to get a cell to expand it's height dynamically.
Is there a way to adjust the height of a row(GridRow) after it is rendered?
If not, then I will try to use an expandable grid or tree in a...
Roo asked 11/6, 2015 at 14:57
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
5
Solved
I'm trying to color a row depending on it's value in the new angular-ui-grid 3.0 rc12 but I haven't been able to. The following code used to work in the previous version (ngGrid):
$scope.gridOptio...
Soffit asked 14/10, 2014 at 13:55
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
2
Solved
I'm using AngularJs Ui-Grid.info to display dynamic data grids, I love it but now I have to hook it up to a database table with 60,000 records using server-side filtering and paging and it appears ...
Parasynthesis asked 17/3, 2015 at 6:42
1
I have four tabs using the latest AngularStrap tab, every tab has a close button, and every tab pane using the latest ui-grid.
expected result: close the second tab, then show the third active
ta...
Dopp asked 10/12, 2015 at 13:23
2
Solved
I define a column as follows:
{
name: 'button',
displayName: '',
cellClass: 'ui-grid-vcenter',
enableColumnMenu: false,
enableFiltering: false,
enableSorting: false,
cellTemplate: '<di...
Amero asked 2/6, 2015 at 21:45
1
Solved
I have simple controller:
angular.module('it.works', ['ngResource'])
.controller 'ItWorksCtrl', ($scope, Task) ->
$scope.worksTable = {
data: Task.query(),
columnDefs: [
{ field: "cre...
Mora asked 2/9, 2015 at 7:9
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
1
Solved
I have an ui-grid where I want to select row by clicking any where on any row.
I also want to copy a cell content to clip board.
I did the following code, but while enableFullRowSelection is true, ...
Creel asked 25/11, 2015 at 9:18
4
Solved
I am trying to render a simple table using Angular UI Grid (unstable version).
Against each row I need a button when clicked should be handled in my parent controller.
Plunker
Javascript:-
angul...
Islander asked 23/12, 2014 at 13:25
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
1
Solved
I am trying to make angular ui-grid cell editable (row) cell editable on single click.
Right Now, Cell becomes editable on double click.
How do I make cell editable on single click?
HTML:
<d...
Teakwood asked 10/11, 2015 at 7:43
© 2022 - 2024 — McMap. All rights reserved.