Andrew Timberlake

Results 18 comments of Andrew Timberlake

Thanks @joselo I also use the library to produce invoices of various lengths. Why do you need the number of pages before rendering the table? If you give me your...

Thanks @Hermanverschooten I’ll look at how to incorporate something like this into the library.

It is not currently possible with this library. To support it would require the ability to read the PDF format, which this library does not support. Once read you would...

A pull request would be welcome

@zkessin That’s correct. Most operations are passed through Document to the current page and the actual writing/drawing is done on the page.

I have not added UTF-8 support. The PDF format does not have intuitive support for UTF-8, at least not as easy as Elixir ;-) Right now the only character support...

I’m sorry I don’t have time at this point. The PDF spec is available online but it is quite a monster. One of the things I’m sure would be needed...

I‘m experiencing the same with group options https://user-images.githubusercontent.com/39077/178917979-f5f7847d-abf7-434b-a375-bb9358d4cc22.mp4 In controller ```elixir get templates() { return [ { groupName: 'Letter Templates', options: this.store.peekAll('letter-template'), }, { groupName: 'SMS Templates', options: this.store.peekAll('sms-template'), },...

This mouse bug went away when I transformed the `RecordArray` to an `Array` ```elixir get templates() { return [ { groupName: 'Letter Templates', options: this.store.peekAll('letter-template').map(t => t), }, { groupName:...

"=" in the URL outside of the query string is not a valid URL, it should be %3D @darksheik your first attempt in b6b7317 was on the right track rather...