Problem with editing adv. settings

I have a problem. I can't edit advanced settings. 

EDIT: Solution:

 

 

That's because we really have not found a cause for it yet. As such, there is no solution yet.

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.

Side note: PC Linux or Mac  user ?

 

probm.PNG · 11K · 85 views
Quote · 8 Sep 2011
 
 
Below is the legacy version of the Boonex site, maintained for Dolphin.Pro 7.x support.
The new Dolphin solution is powered by UNA Community Management System.