How do I display the record name as the title on the edit page for custom objects?

While configuring the cx-edit fragment in Oracle Visual Builder Studio, you can display the record name as the title in the edit page by adding 'titleItem': 'RecordName' in the resource parameter. Here's the sample code:

<oj-vb-fragment bridge="[[vbBridge]]" name="oracle_cx_fragmentsUI:cx-edit">

<oj-vb-fragment-param name="resource" value="[[ { 'name': 'Payment_c', 'endpoint':
$application.constants.serviceConnection, 'id': $page.variables.id, 'puid': $page.variables.id, 'titleItem': 'RecordName'} ]]"> 
</oj-vb-fragment-param>