I have a Laserfiche form with lookup rules. One of the lookup rules populates a table on the form. I would like to run javascript when the form is fully loaded, including the table being fully populated.
I have tried
$(document).ready()
and
$(document).on("ajaxStop", funct)
but both of these events occur before the form is finished loading.
Is there a simple, reliable method I have missed or do I just have to guess based on elapsed time?