This topic is locked

Change from Edit to Icon in List

12/3/2006 3:13:31 PM
PHPRunner General questions
S
susoft author

Hello, is it possible to replace, I think in the Templete or so, the simple word's View and Edit with Icons for all List view's?

with kind regards Andreas

J
Jane 12/4/2006

Andreas,
sure, you can do it on the Visual Editor tab.

Highlight view or edit link, turn on HTML mode, find this code:

<TD align=middle><A href="TableName_view.php?{$row.1editlink}">View</A></TD>



and replace it with this one:

<TD align=middle><A href="TableName_view.php?{$row.1editlink}"><IMG src="images/icon_view.gif" border=0></A></TD>

S
susoft author 12/8/2006

Andreas,

sure, you can do it on the Visual Editor tab.

Highlight view or edit link, turn on HTML mode, find this code:
and replace it with this one:



Hello thanks this works, but it is possible to use other icons as the defaults, or in other words what is the way to ad icons to the file list that is trasfered by the build process?
Thanks for any help, Andreas

J
Jane 12/8/2006

Andreas,
just add your icon to the C:/Program Files/PHPRunner3.2/source/images folder and change file name in your code:

<TD align=middle><A href="TableName_view.php?{$row.1editlink}"><IMG src="images/your_icon.gif" border=0></A></TD>