ui-grid symbols issue

前端 未结 9 959
青春惊慌失措
青春惊慌失措 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;
    }
    
    0 讨论(0)
  • 2020-12-10 11:00

    You may also want to look at a recently added tutorial: http://ui-grid.info/docs/#/tutorial/116_fonts_and_installation

    This covers how to install the fonts correctly, and a little bit of trouble shooting.

    0 讨论(0)
  • 2020-12-10 11:01

    You need to download the font files:

    • ui-grid.woff
    • ui-grid.eot
    • ui-grid.svg
    • ui-grid.ttf

    from here. And move them where your ui-grid.min.css lives.

    0 讨论(0)
提交回复
热议问题