This topic is locked
[SOLVED]

 Display Short Filename on List Page

4/22/2012 3:01:34 PM
PHPRunner General questions
M
MikeB941 author

PHPRUNNER 6.0 Build 10638
Using Visual Editor "View As" type "File" (uploads) is it possible to override the displayed filename link on the list page to something short/generic such as "Download" (similar to the Display Word field for a hyperlink).
Many thanks! Take Care... Mike.

C
cgphp 4/22/2012

In the "Liast page: before record processed" event, enter the following code:

$data['field_name'] = "Download";


Replace field_name with the real name of the file field.

M
MikeB941 author 4/22/2012

Worked brilliantly! Thanks so much Cristian! Take Care... Mike.