Master/Detail View button

This public forum is for user-to-user discussions of ASP.NET Maker. Note that this is not support forum.
Post Reply
ahmed7
User
Posts: 97

Master/Detail View button

Post by ahmed7 »

hello
I use v21 and have a relationship between 2 Tables that make master/Detail and all is OK , But because is one table related with the master table so will be the one button in view page for (Master/Detail) with name of this detail table , and there is another button is sub of this one , so how can to hide the first one because it has not correct link:
http://localhost:5000/FollowProcedureeList?showmaster=Follow&fk_Follow_Id=8

and the correct link with the second button is :
http://localhost:5000/FollowView/8?showdetail=Follow_Proceduree

I hope to get help please.
Thanks


MichaelG
User
Posts: 1095

Post by MichaelG »

The first link (List?showmaster=...) is the detail list page and the second link (View/..?showdetail=...) is the master/detail view link. They are different and navigate to different pages. You cannot hide the link to the detail list page alone.

If you just want to show the master/detail view link only, use the ListOptions_Rendered server event to show the master/detail view link only.


ahmed7
User
Posts: 97

Post by ahmed7 »

So how I can to show the master/detail view link only there?


Post Reply