ui-grid symbols issue

前端 未结 9 1010
青春惊慌失措
青春惊慌失措 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条回答
  •  慢半拍i
    慢半拍i (楼主)
    2020-12-10 10:55

    I would just like to add this answer (stolen verbatim from panciz) for the folks using Grunt who would like to have these automatically copied. This needs to be placed in your Gruntfile.js:

    copy: {
          dist: {
            files: [
               ...
            //font di ui grid
             {
                  expand: true,
                  flatten: true,
                  dest: 'dist/styles/',
                  src: ['bower_components/angular-ui-grid/ui-grid.ttf',
                        'bower_components/angular-ui-grid/ui-grid.woff',
                        'bower_components/angular-ui-grid/ui-grid.eot',
                        'bower_components/angular-ui-grid/ui-grid.svg'
                        ]
                }
        ]},
    

提交回复
热议问题