I am using angular grid. I implemented custom dropdown filter on two columns by following this article and I have totally 11 columns. If I add the 11th column then filter is not showing up for one of the column but all 11 columns are displayed properly. If I remove the 11th column then filter dropdown is showing up for both the columns.
Any work around??
I am already using
app.js:
angular.module('myapp', ['ngAnimate', 'ngResource', 'ngTouch', 'ui', 'ui.bootstrap',
'ui.grid', 'ui.grid.grouping', 'ui.grid.autoResize', 'ui.grid.resizeColumns']);
index.html:
<div id="grid1" ui-grid="gridOptions"
class="grid" ui-grid-resize-columns ui-grid-grouping ui-grid-auto-resize></div>
and in my HTML as well. thats why all columns are displayed correctly for more than 10
This is not duplicate of this