So just in process of creating my first v8 package its update to examine inspector.
For the dashboard part i have the class:
[Weight(-10)]
public class ExamineInspectorDashBoard : IDashboard
{
public string Alias => "examineInspector";
public string[] Sections => new[] { Umbraco.Core.Constants.Applications.Settings };
public string View => "/App_Plugins/ExamineInspector/dashboard/formsdashboardintro.html";
public IAccessRule[] AccessRules => Array.Empty<IAccessRule>();
}
I should see dashboard in settings but do not see it also no errors in the log.
So one update, at the moment in settings i see no dashboards at all. If i update the weight to -10 then the other dashboards show up but mine does not.
v8 dashboard not showing
So just in process of creating my first v8 package its update to examine inspector.
For the dashboard part i have the class:
I should see dashboard in settings but do not see it also no errors in the log.
Any ideas?
So one update, at the moment in settings i see no dashboards at all. If i update the weight to -10 then the other dashboards show up but mine does not.
I was able to get it working
Weight(-10)
using vs code by both=========== and ===========
Are you using other namespaces than the following:
Tarik,
Ok that worked. I get the weight bit but the constants settings value is same as literal value.
Anyhow no matter i have got a bit further thanks for your help
is working on a reply...