First: Your custom field def is in cache/dynamic_fields/YOURMODULE/fields.php
…
Anyways. So far my understanding is that from your custom module’s ListView you will have your SNCASES_CASENUMBER_C listed as a column (am I right?).
… Then when you click on this link you want to go to the same module’s DetailView (am I right again? Hope yes
).
If I was right in my assumptions then you just have to add to your SNCASES_CASENUMBER_C def ‘link’ => true in the listviewdefs.php.
So, here:
PHP Code:
'SNCASES_CASENUMBER_C' =>
array (
'width' => 10,
'label' => 'sncases_casenumber_c',
'default' => true,
'link' => true,
),
this will automatically link your field to the current module's DetailView
Bookmarks