Thanks to "Dolphin Jay" for this workaround
Open /templates/base/scripts/bxbaseformview.php scroll all the way to the bottom of the page and you will find this function:
|
function getOpenTbody($aAdd = false) { if (!$this->_isTbodyOpened) {
if ($aAdd and is_array($aAdd)) $sAttrs = $this->convertArray2Attrs($aAdd); else $sAttrs = '';
$sCode = " <tbody $sAttrs>\n";
$this->_isTbodyOpened = true;
return $sCode; } else return ''; }
|
Change the function to false :
|
function getOpenTbody($aAdd = false) {
if (!$this->_isTbodyOpened) {
if ($aAdd and is_array($aAdd))
$sAttrs = $this->convertArray2Attrs($aAdd);
else
$sAttrs = '';
$sCode = "
<tbody $sAttrs>\n";
$this->_isTbodyOpened = false;
return $sCode;
} else
return '';
}
Now everything in the settings advanced settings will be opened on page load rather then on down arrow click. If it still does not work for you then i would say you have something wrong with your java on your pc or there is a odd server setting missing.
Once I was able to re-check all the caching all my problems were resolved.