Add default items to List or Library on Form Load

Is it possible to add new/default items to child List on Form Load without clicking the add item button and manually entering.

Hello @dpeete,

You can create new items with PnPjs request:

pnp.sp.web.lists.getbytitle( ).items.add

You can find the code example in this post:

Also, we would suggest creating new items either on button click or on parent item creation, instead of creating an item on form load to avoid errors.