Results 1 to 3 of 3

Thread: Admin panel menu settings problems -- not showing, expanding and loading

  1. #1

    Join Date
    Jan 2009
    Posts
    8

    Unhappy Admin panel menu settings problems -- not showing, expanding and loading

    I have a few problems installing Dolphin 7 on my VPS account and I would really like to solve this problem without reinstalling. I have checked my php settings and everything appears to be correct.

    In the admin interface, Settings > Advanced settings there are no arrows with links showing on the right hand side and therefore the menus can't be expanded.

    Someone else posted the same post recently but the discussion but there didn't seem to be a clear solution.

    Mobile :: BoonEx Unity Forums

  2. #2

    Join Date
    Jan 2009
    Posts
    8

    Default Here is the solution posted by dolphin_jay on the boonex forum

    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.

  3. #3

    Join Date
    Feb 2010
    Posts
    31

    Default

    pm me ill help you...

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Similar Threads

  1. Navigation Bar Problems showing state
    By bdr in forum General Troubleshooting
    Replies: 2
    Last Post: 02-09-2008, 08:34 AM
  2. menu problems in admin area
    By little in forum General Troubleshooting
    Replies: 6
    Last Post: 04-23-2007, 08:02 AM
  3. Member menu not showing!
    By magy in forum Bugs Dolphin 5.6.4
    Replies: 3
    Last Post: 04-09-2007, 09:38 PM
  4. Problems with date not showing up correctly
    By Techbot in forum General Troubleshooting
    Replies: 1
    Last Post: 11-29-2006, 09:08 PM
  5. Admin Settings To Consider Changing
    By Smoge in forum General Issues, Comments, Questions
    Replies: 0
    Last Post: 05-07-2005, 01:04 AM

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •