0

Can I add header Name for default checkbox column in uigrid? If so how can I do that?

enter image description here

4
  • yes you can. you can close this question or add your code or demo in Plunker Commented Sep 7, 2017 at 15:36
  • Sorry, it seems my question was incomplete,can you tell me how can I do that? Commented Sep 7, 2017 at 16:02
  • post relevant code where you configure ui-grid options Commented Sep 7, 2017 at 16:11
  • enabling checkbox in uigrid is just a simple set of code Commented Sep 7, 2017 at 20:40

1 Answer 1

1

I would prefer you override the ng-template of the ui-grid header. This is just a hack.

.ui-grid-header-viewport {
    .ui-grid-header-cell {
        .ui-grid-selection-row-header-buttons {
            opacity: 1;
        }
        .ui-grid-selection-row-header-buttons:before {
            content: 'checkme!';
        }
    }
}
Sign up to request clarification or add additional context in comments.

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.