-
Notifications
You must be signed in to change notification settings - Fork 2.5k
uiGridColumnMenu template custom #5260
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Comments
falsyvalues
added a commit
to falsyvalues/ui-grid
that referenced
this issue
Oct 11, 2017
…r-cell`, `filter`. Fixes issues angular-ui#4744, angular-ui#5717, angular-ui#5115, angular-ui#5196, angular-ui#5712, angular-ui#5260, angular-ui#5196, angular-ui#4851, angular-ui#4514, angular-ui#5601 For URL-based templates we need to be sure that content arrived before `$compile` and `$elm.append` call.
mportuga
pushed a commit
that referenced
this issue
Oct 31, 2017
vishalnarewade
pushed a commit
to vishalnarewade/ui-grid
that referenced
this issue
Nov 6, 2017
…r-cell`, `filter`. Fixes issues angular-ui#4744, angular-ui#5717, angular-ui#5115, angular-ui#5196, angular-ui#5712, angular-ui#5260, angular-ui#5196, angular-ui#4851, angular-ui#4514, angular-ui#5601 For URL-based templates we need to be sure that content arrived before `$compile` and `$elm.append` call.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hello! Search (Issues) no results.
I want to make a custom template uiGridColumnMenu, but I do not know how to do. I want to change the look of uiGridColumnMenu
field: 'name', name: 'Name', menuItems: filterMenuGenerator('name', 'str'), enableSorting: true, enableHiding: false, cellTemplate: 'views/app/jobs_grid/job_info.tpl.html', headerCellTemplate: '/views/app/jobs_grid/headerMenu.html', enableSorting:false, menuItems:[ { title:'', icon: 'fa fa-sort-alpha-asc', action: function() { alert('Grid ID: ' + this.grid.id); } }, { title:'', icon: 'fa fa-sort-alpha-desc', action: function() { alert('Grid ID: ' + this.grid.id); } }, { title:'', icon: 'fa fa-filter', action: function() { alert('Grid ID: ' + this.grid.id); } } ] },
The text was updated successfully, but these errors were encountered: