This topic is locked

How can I can set sections to be always expanded and remove the minus button that hides them?

6/9/2014 10:31:25 AM
PHPRunner Tips and Tricks
Sergey Kornilov admin

Applies to Add/Edit/View pages.
Here is what you need to add to Javascript OnLoad event of the page in question in order to achieve this:

var section="New_section1";

$("#section_"+section).show();

$("#section_"+section+"Butt").hide();


To figure out section name use the following:

http://xlinesoft.com/phprunner/docs/how_to_work_with_foldable_section.htm