1

(44 replies, posted in Announcements)

Hi Alastair,

Any news on this problem yet? I've found out that the error occurs only when there are widgets used. So when I add the widget "Overdue Sales Invoices" to the Dashboard page/area. The error is showed on that page only. When I remove the widget the error is gone again.

Hope you can help!

2

(44 replies, posted in Announcements)

Thanks a lot for your very quick reply!

I've tried your solution but unfortunately it didn't resolve the problem. Perhaps it is because of my lack of knowledge in coding :-S

I've changed the dashboard_ui.inc to:

<?php
// ----------------------------------------------------------------
// $ Revision:  1.0 $
// Creator: Alastair Robertson
// date_:   2013-01-30
// Title:   UI functions for dashboard
// Free software under GNU GPL
// ----------------------------------------------------------------

function widget_list_row($widgets, $label, $name, $selected_id=null, $submit_on_change=false)
{
    echo "<tr><td class='label'>$label</td><td>";
    echo array_selector($name, $selected_id, $widgets,
        array(
            'select_submit'=> $submit_on_change
        ) );
    echo "</td></tr>\n";
}

function select_row($label, $name, $selected_id=null, $items, $options)
{
    // add missing function for generic selector row
    echo "<tr><td class='label'>$label</td><td>";
    echo array_selector($name, $selected_id, $items, $options);
    echo "</td></tr>\n";
}

function start_cell()
{
    echo "<td>";
}

function end_cell()
{
    echo "</td>";
}
?>

I still get the message as mentioned earlier.

3

(44 replies, posted in Announcements)

Hi AlastairR,

Thanks for the wonderfull module! I do have a problem with it though. On the Dashboard tab I get the following message:

implode(): Invalid arguments passed in file: /srv/bosgraaf/www/**My URL**/includes/ui/ui_controls.inc on line59

Everything does seem to work but what does this message mean and what is going wrong? Did I miss a setting?

I'm using FA 2.3.24 and Dashboard 2.4.0-1 with Exclusive Dashboard Theme 2.3.10-3

I did search the web and this forum but didn't find a solution. I hop you or someone else is able to help!

Thanks in advance!