Pdfmake: How to concatenate text styles within the cell of a table?

Created on 11 Mar 2018  路  2Comments  路  Source: bpampuch/pdfmake

Hello everyone,
Please, I would like you to help me.
I want to know what is the correct way to concatenate text with independent styles within a cell.

The code is the following:

 {
            table: {
                widths: ['*','auto',150,'*'],
                body: [
                    ['Nro','Nombre','Apellidos','Dni'],
                    ['001','Pepe','Suarez','7041654'],
                    ['002','Miguel','Sanchez','8787997'],
                    ['003','Juan', ['Suarez',{text:'Benites',bold:true}],'8787997']
                ],
                headerRows: 1
            }
        }

And the current result is:
firefox_2018-03-11_01-15-42

The result I need is:
needed

I do not know why it makes a line break.

Thank you very much.

Most helpful comment

See https://github.com/bpampuch/pdfmake#styling, texts must be in one text element.

Example:

     {
            table: {
                widths: ['*','auto',150,'*'],
                body: [
                    ['Nro','Nombre','Apellidos','Dni'],
                    ['001','Pepe','Suarez','7041654'],
                    ['002','Miguel','Sanchez','8787997'],
                    ['003','Juan', [ {text: ['Suarez ', {text:'Benites',bold:true}]} ],'8787997']
                ],
                headerRows: 1
            }
        }

All 2 comments

See https://github.com/bpampuch/pdfmake#styling, texts must be in one text element.

Example:

     {
            table: {
                widths: ['*','auto',150,'*'],
                body: [
                    ['Nro','Nombre','Apellidos','Dni'],
                    ['001','Pepe','Suarez','7041654'],
                    ['002','Miguel','Sanchez','8787997'],
                    ['003','Juan', [ {text: ['Suarez ', {text:'Benites',bold:true}]} ],'8787997']
                ],
                headerRows: 1
            }
        }

Thank you very much. It works perfect

Was this page helpful?
0 / 5 - 0 ratings

Related issues

Christian24 picture Christian24  路  3Comments

sayjeyhi picture sayjeyhi  路  3Comments

kumarandena picture kumarandena  路  3Comments

CharlyPoppins picture CharlyPoppins  路  3Comments

SummerSonnet picture SummerSonnet  路  3Comments