ui-grid symbols issue

前端 未结 9 1021
青春惊慌失措
青春惊慌失措 2020-12-10 10:21

I am using AngularJs ui-grid http://ui-grid.info/.

While implementing, I get something which you can see in the following img in right corner of the cell instead of

9条回答
  •  孤街浪徒
    2020-12-10 10:56

    Another way to solve the issue is modify the CSS class as follows

    .ui-grid-icon-down-dir:before {
      content: '\25bc';
    }
    .ui-grid-icon-up-dir:before {
      content: '\25b2';
    }
    
    .ui-grid-selection-row-header-buttons.ui-grid-row-selected:before{
        content:'\2714' !important;
    }
    .ui-grid-all-selected:before{
        content:'\2714' !important;
    }
    

提交回复
热议问题