Как добавить логотип при экспорте pdf из guriddo jqgrid? - PullRequest
0 голосов
/ 20 февраля 2019
j$("#jqGrid").jqGrid("exportToPdf", {
      title: 'Quick Pricing Estimate',
      background: 'simple text',
      orientation: 'landscape',
      pageSize: 'legal',
      description: 'Pricing estimates are subject to change.',
      download: 'download',
      includeLabels : true,
      includeGroupHeader : true,
      includeFooter: true,
      customSettings: null,
      fileName : "jqGridExport.pdf",
      mimetype : "application/pdf", 
      onBeforeExport : function( doc ) 
      {
              doc.styles.tableBody.fontSize = 8;
              doc.styles.title.alignment = 'left';
              doc.styles.description.color = '#FF0000';
      }
})
Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...