angular-ui/ui-grid

pdf export exporterFieldCallback

Open

#4,793 opened on Dec 1, 2015

View on GitHub
 (1 comment) (0 reactions) (0 assignees)JavaScript (5,395 stars) (2,496 forks)batch import
good first issuegrid-exporterneeds: decision

Description

in exporterFieldCallback I add spaces to the input to produce identation but it doesn't appear in the pdf.

    exporterFieldCallback: function(grid, row, col, input) {
      var value = "      " + input;

      return value;
    },

Contributor guide