angular-ui/ui-grid

suggestion: grouping: support automatic pinning

Open

#4.123 aberto em 5 de ago. de 2015

Ver no GitHub
 (5 comments) (0 reactions) (0 assignees)JavaScript (2.496 forks)batch import
good first issuetype: enhancementworkaround

Métricas do repositório

Stars
 (5.395 stars)
Métricas de merge de PR
 (Nenhuma PRs mesclada em 30d)

Description

It would be great to automatically pin a column when grouping by the column.

I've tried to implement a workaround with the available gridApi, but I cannot find an easy way to see if the column is already pinned (for example, the existance of an isPinnedLeft attribute) or already grouped.

pseudo-code:

gridApi.grouping.on.groupingChanged(col){
    if(!col.isPinnedLeft){
        gridApi.pinning.pinColumn(col, uiGridPinningConstants.container.LEFT)
    }
...
}

Guia do colaborador