angular-ui/ui-grid

Dropdown cell template is now shown

Open

#3,020 opened on Mar 15, 2015

View on GitHub
 (17 comments) (0 reactions) (1 assignee)JavaScript (2,496 forks)batch import
good first issuetype: bug

Repository metrics

Stars
 (5,395 stars)
PR merge metrics
 (No merged PRs in 30d)

Description

Hi,

Similar problem was discussed here: https://github.com/angular-ui/ng-grid/issues/666 But it's old. Now,

When I have a bootstrap bropdown button in a cell template, it is now shown. I created CSS (actually less) for it:

.ui-grid-cell.showMe {
    overflow: visible;

    .ui-grid-cell-contents {
        overflow: visible;
    }
}

and then user showMe as cellClass. The result:

uigrid1

It seems working BUT, still there is a problem with table overflow:

uigrid2

When it overflows from table, it's now shown. How we can solve the problem?

Contributor guide