Mark Melton

Results 16 comments of Mark Melton

Anyone found a solution to this please share?

Hello. I found the answer. Add this to you css file: ``` tr { page-break-inside: avoid !important; } ``` or do this if you prefer: ``

Hi @davisford! Your branch works form me, except it connects twice to the server! In the debug is says "Forward has 2 deffered calls b/c socket was not ready yet"...

Hi, here is the factory responsible for the connection: ''' app.factory('realtimeService', ['$rootScope', 'socketFactory', 'localStorageService', function($rootScope, socketFactory, localStorageService) { var socket; var wrapper = socketFactory({ioSocket : socket}) $rootScope.$on('authenticated', function() { alert('This...

Kindly disregard the second alert. Creeped into the code after two sleepless nights.

Thank you. Been waiting all day. I will do just that. You're very kind.

So I stripped down the project so that I can git it. When I ran the stripped down version, voila! Connection established only once. Thank you @davisford! I am sure...

Having exactly the same issue on Windows 10 Pro, 64 bit. Everything is set well but I get exactly the error above using .Net Core 2.0 Please were you able...

I found the solution. Simply download the repo, compile on your machine and then copy the `wkhtmltopdf.exe` from the sample project and use.

Awesome. This is exactly what I am looking for. In my opinion its actually more common to connect to realtime backends after some activity(in production), hardly ever on app initialization....