Pdf render with tabulator table

I am trying to render a pdf from a form with a tabulator table on it.

Here is the server Code:

@anvil.server.callable
def create_pdf(form,**args):
    pdf = anvil.pdf.render_form(form,**args)
    return pdf

Here is the error message:

AttributeError: 'HTMLDivElement' object has no attribute 'replaceChildren'

A clone link might help provide more context about how you are passing everything to the renderer. What args are you passing to **args?

If you’re using Tabulator as a third party dependency, which version are you using?
If Development version this should now be fixed.

1 Like

You’re awesome!

It works now!