Developer forum

Forum » PIM » PIM dashboard - Reset all customizations

PIM dashboard - Reset all customizations

Michael Knudsen
Reply

Hello forum,

- hope somebody have some insights on this topic, because I'm a bit puzzeled about the button 'Reset all customizations'. When some customizations have been done to the dashboard and somebody by accident clicks on 'Reset all customizations' (and confirms reset) the PIM dashboard are reset back to the list below. But is it possible to customize this 'default' list of widgets?

It could also be handy with a 'Save as default' or something in that direction.

 

Br. Michael Knudsen


Replies

 
Oleg Rodionov Dynamicweb Employee
Oleg Rodionov
Reply
This post has been marked as an answer

Hi,

The default configuration of widgets is hardcoded and cannot be edited-changed nowadays.  

BR, Oleg QA

Votes for this answer: 1
 
Søren Jensen Dynamicweb Employee
Søren Jensen
Reply

Hi,

Take a look in "Settings/Editing/Dashboards".. There you will find "Default settings" for various area and can also make new Dashboards (see below)

/Søren

 
Michael Knudsen
Reply

@Oleg: Do you know if there is any feature request regarding customizations of 'default' dashboards?

@Søren: I'm aware of the options to add more dashboards to PIM, but you can't choose which should be 'default' and furthermore is every new dashboard created from the same hardcoded template as Oleg mentions, so it doesn't solve my issue.

Br. Michael Knudsen

 
Oleg Rodionov Dynamicweb Employee
Oleg Rodionov
Reply

Hi,

The default set of wigets is defined by the following code now:

  [Export(SystemName, typeof(IDashboard))]
public class ProductInformationDashboard : DashboardBase
{
public const string SystemName = "PIM";
 
protected override DashboardConfiguration GetDefault(string path)
{
return new DashboardConfiguration()
{
Widgets = new DashboardWidget[]
{
new OrdersWidget(),
new ProductCountWidget(),
new LastWeekOrdersChart()
}
};

I don't know about the request. Please, have a look at: https://doc.dynamicweb.com/forum/feature-requests?PID=1605 and add new requiest if relevant.

BR, Oleg QA

 

You must be logged in to post in the forum