This topic is locked

Master/Detail Table View - Hide Detail Table Name/Header

7/15/2011 12:03:37 PM
PHPRunner General questions
D
DigitalDean8 author

I am building an order system that has master and detail tables with multiple views. One of my views of the detail table will appear in an "order form" and I can't figure out how to tell PHPR to hide or better yet delete the section of the detail table display for the "Table Name". I have attached a few of the issue to this post. Any thoughts on how to hide that text and also close up the excess space that the table header uses?


Is there a way to do this just for this table view?
Thanks!

Dean

C
cgphp 7/15/2011

In the "Javascript onLoad" event of the target page paste this code:

$("div[id^='dpShowHide']").hide();

$("div[id^='detailPreview']").removeClass('dpStyle');