This topic is locked

Hide View

8/4/2009 10:31:54 AM
ASPRunnerPro General questions
A
amarhoun author

Hi there,
This is an awsome programm.
Is there a way to hide the view details i.e. the VIEW link from the list page for particular reocrd if another field in the same reocrd have the speceific information
in another words :
based on the status of the record I want to hide the View details of the reocrd. if the status is closed the reocrd can be seen in the list page, but cannot be viewed.
Thanks for your support. <img src='https://asprunner.com/forums/file.php?topicimage=1&fieldname=question&id=12477&image=1&table=forumtopics' class='bbcemoticon' alt='^^' /> <img src='https://asprunner.com/forums/file.php?topicimage=1&fieldname=question&id=12477&image=2&table=forumtopics' class='bbcemoticon' alt='^^' />
Regards,
amarhoun.

J
Jane 8/5/2009

Hi,
use List page: After record processed event on the Events tab for this purpose.

Here is a sample:

if data("status")="closed" then

record("View_link") = false

end if

A
amarhoun author 8/8/2009

Hi,

use List page: After record processed event on the Events tab for this purpose.

Here is a sample:


Hi Jane,
Thanks for your quick reply.