Hello @azurdo,
To add this field into result table in “Association Manager” page, please open the file
administrator/components/com_jalang/helpers/content/adapters/modules.php
Then find the following code snippet:
[PHP]public function getDisplayFields()
{
return array(
‘a.id’ => JText::_(‘JGRID_HEADING_ID’),
‘a.title’ => JText::_(‘JGLOBAL_TITLE’),
‘a.module’ => JText::_(‘MODULE’)
);
}[/PHP]
And replace it with this one:
[PHP]public function getDisplayFields()
{
return array(
‘a.id’ => JText::_(‘JGRID_HEADING_ID’),
‘a.title’ => JText::_(‘JGLOBAL_TITLE’),
‘a.module’ => JText::_(‘MODULE’),
‘a.note’ => JText::_(‘Note’)
);
}[/PHP]