This topic is locked
[SOLVED]

 How Do I Remove The Proceed To Link?

1/24/2013 11:29:26 PM
PHPRunner General questions
W
wildwally author

I've asked before with no response and I see others are looking for the answer also. I've search with no luck. Looking to remove the link from the list page that appears when a child list page is displayed. It says Proceed to (table name). And it has a red X to the left of it to collapse the child list. There was instruction 2 years ago on how to do this; however, the detailpreview.js page no longer exists to attempt such route.
Any help would be greatly appreciated.

S
sthefaine 1/25/2013

1 - you can modify template file C:\Program Files\PHPRunner6.0\source\include\common\runnerJS\DetPreview.js



Find the following line (should be line 302)

'<a href="'+$("#"+this.shortTName+"_preview"+row.id).attr('href')+'" name="dp'+newId+'">'+Runner.lang.constants.TEXT_PROCEED_TO+' '+Runner.pages.PageSettings.getTableData(this.tName, "strCaption", "")+'</a></div>'
and modify it the following way:

'</div>'

W
wildwally author 1/25/2013


1 - you can modify template file C:\Program Files\PHPRunner6.0\source\include\common\runnerJS\DetPreview.js



Find the following line (should be line 302)

'<a href="'+$("#"+this.shortTName+"_preview"+row.id).attr('href')+'" name="dp'+newId+'">'+Runner.lang.constants.TEXT_PROCEED_TO+' '+Runner.pages.PageSettings.getTableData(this.tName, "strCaption", "")+'</a></div>'
and modify it the following way:

'</div>'


Thank you so much for providing this update. The name & location of the DetailPreview.js file changed and the prior information found was no longer valid. I searched high and low for this thing and could not find it.
Thanks again.

DonnaLynn 1/29/2013

a little note... If you want to just change it for a project instead of the program, then the file to change is in the output\include\runnerJS\RunnerAll.js
:-DL