relate field not working in popup search on custom module

Hello,
seems same issue as some previous bugs but before opening it i would like to check.

I have some custom modules with relate field on another custom module…

Seems that when a use popupsearch the record name is not clickable…

How do i check?

Thank you

Check that new module name field has linkable flag. Example:
public_html/custom/modules/ctmr_Customers/metadata/popupdefs.php

‘listviewdefs’ => array (
‘CUSTOMER_CODE’ =>
array (
‘type’ => ‘varchar’,
‘label’ => ‘LBL_CUSTOMER_CODE’,
‘width’ => ‘10%’,
‘default’ => true,
),
‘NAME’ =>
array (
‘type’ => ‘name’,
‘label’ => ‘LBL_NAME’,
‘width’ => ‘10%’,
‘default’ => true,
‘link’ => true
),
),