MscrmTools / MsCrmTools.UserSettingsUtility

XrmToolBox plugin to manage users personal settings in bulk
GNU General Public License v3.0
7 stars 11 forks source link

Enhancement Request: Include Interactive Dashboards in Default Dashboard setting #38

Closed benweston81 closed 4 years ago

benweston81 commented 5 years ago

The Default Dashboard setting only shows Classic Dashboards at present and does not contain Interactive Dashboards. I believe this would be as simple as changing the FetchXML query in the RetrieveDashboards method to include a type of 10. For example:

<fetch>
  <entity name="systemform" >
    <attribute name="formid" />
    <attribute name="name" />
    <filter type="and" >
      <condition attribute="formactivationstate" operator="eq" value="1" />
      <filter type="or" >
        <condition attribute="type" operator="eq" value="0" />
        <condition attribute="type" operator="eq" value="10" />
      </filter>
    </filter>
    <order attribute="name" />
  </entity>
</fetch>
MscrmTools commented 5 years ago

Will add it