Allow inline Record creation for Child object not working

Anshul,

Can you give some more details (or screenshots) of your model and page setup? Do you not want to display parent id and record type in the table and fill them out there, or do you want the parent id and record type to match that of the contact displayed on the page? If you are only showing one contact record but multiple contact method records, there’s a way to fill out those fields on the contact method on the backend:

You could use model actions to fill out those fields by adding an action to the contact method model. For the action, when a new row is created on the contact method model, you could update the parent id and record type of that model by looking at the contact model using global merge syntax. For example, for the parent id field it might be something like {{{$Model.ContactModelName.data.0.Id}}}. This pulls the id from the first row of the Contact model, which is why I said this would only work if you’re only looking at one contact record.