<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Editing Default User and Site Dashboard Layout / Dashlets in Alfresco Archive</title>
    <link>https://connect.hyland.com/t5/alfresco-archive/editing-default-user-and-site-dashboard-layout-dashlets/m-p/252913#M206043</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Hi guys, for my specific implementation it makes sense to only use the 2 column layout on both the site and user dashboards. I want to make this be the default layout and pick which dashlets i'm going to use as i'm going to create a large number of sites and users and dont want to manually go through and edit the layout for each one.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;So far i've succesfully commented out sections of the presets.xml located in &lt;/SPAN&gt;&lt;EM&gt;/tomcat/webapps/share/WEB-INF/classes/alfresco/site-data/presets&lt;/EM&gt;&lt;SPAN&gt; such that when I create a new user only the dashlets left uncommented are shown, however the dashlets are still shown in the 3 column layout. If anyone could tell me what I'd need to edit to make this layout default and/or how to define the region-id's i'd be extremely grateful. &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I've been looking for where the user's layout config is stored so I could set the dashboard up as I want it to be in the preset and then look at this user's config to get figure out how to put this in as the default in presets.xml but I can't find where they're put.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks in advance,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Rob&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 26 Jan 2011 13:49:58 GMT</pubDate>
    <dc:creator>bigrob</dc:creator>
    <dc:date>2011-01-26T13:49:58Z</dc:date>
    <item>
      <title>Editing Default User and Site Dashboard Layout / Dashlets</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/editing-default-user-and-site-dashboard-layout-dashlets/m-p/252913#M206043</link>
      <description>Hi guys, for my specific implementation it makes sense to only use the 2 column layout on both the site and user dashboards. I want to make this be the default layout and pick which dashlets i'm going to use as i'm going to create a large number of sites and users and dont want to manually go throug</description>
      <pubDate>Wed, 26 Jan 2011 13:49:58 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/editing-default-user-and-site-dashboard-layout-dashlets/m-p/252913#M206043</guid>
      <dc:creator>bigrob</dc:creator>
      <dc:date>2011-01-26T13:49:58Z</dc:date>
    </item>
    <item>
      <title>Re: Editing Default User and Site Dashboard Layout / Dashlets</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/editing-default-user-and-site-dashboard-layout-dashlets/m-p/252914#M206044</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;So my bacon and egg roll at lunch somehow provided me with the epiphany I needed to get this working, since I couldn't find one comprehensive source telling me how to do this here's how to change the default dashboard layout for a site/user:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;First up I made a new site type to keep the original preset intact should I want to roll back the changes, I found this simple procedure &lt;/SPAN&gt;&lt;A href="http://forums.alfresco.com/en/viewtopic.php?f=47&amp;amp;t=26499#p86640" rel="nofollow noopener noreferrer"&gt;here&lt;/A&gt;&lt;BR /&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;The elements in the Site Type pulldown box on the Create Site page is generated by an array called in create-site.get.js (which you'll find in the share/WEB-INF/classes/alfresco/site-webscripts/org/alfresco/modules directory). The array definition looks like this:&lt;BR /&gt;&lt;BR /&gt;var sitePresets = [{id: "site-dashboard", name: msg.get("title.collaborationSite")}]&lt;BR /&gt;&lt;BR /&gt;The id refers to a site definition in an XML file, and title.collaborationSite refers to the title text defined in create-site.get.properties. Say you want to add a new Site Type called "Project Site". Change the definition of sitePresets to this: &lt;BR /&gt;&lt;BR /&gt;var sitePresets = [{id: "site-dashboard", name: msg.get("title.collaborationSite")},{id: "project-site-dashboard", name: msg.get("title.projectSite")}];&lt;BR /&gt;&lt;BR /&gt;Now edit create-site.get.properties (found in the same directory) and add a line defining the title text for the new Site Type:&lt;BR /&gt;&lt;BR /&gt;title.projectSite=Project Site&lt;BR /&gt;&lt;BR /&gt;Finally, you'll have to create the actual site definition. Edit presets.xml (in the share/WEB-INF/classes/alfresco/site-data/presets folder). Copy the entire definition that starts with the line "&amp;lt;preset id="site-dashboard"&amp;gt; and down to the corresponding &amp;lt;/preset&amp;gt; tag, and change the id to "project-site-dashboard" (or whatever you want to call your site definition).&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;SPAN&gt;To pick a different default layout scroll to the bottom of the preset you added in presets.xml to where it says &amp;lt;template-instance&amp;gt;&lt;/SPAN&gt;&lt;STRONG&gt;dashboard-3-columns&lt;/STRONG&gt;&lt;SPAN&gt;&amp;lt;/template-instance&amp;gt;, you can then change dashboard-3-columns to one of the layouts that's referenced in this directory: &lt;/SPAN&gt;&lt;EM&gt;share/WEB-INF/classes/alfresco/site-data/template-instances&lt;/EM&gt;&lt;SPAN&gt;.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Then simply remove the dashlets and pages you don't want and update the region-id to where you want them to be.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Hope this helps someone!&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 26 Jan 2011 15:12:47 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/editing-default-user-and-site-dashboard-layout-dashlets/m-p/252914#M206044</guid>
      <dc:creator>bigrob</dc:creator>
      <dc:date>2011-01-26T15:12:47Z</dc:date>
    </item>
    <item>
      <title>Re: Editing Default User and Site Dashboard Layout / Dashlets</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/editing-default-user-and-site-dashboard-layout-dashlets/m-p/252915#M206045</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Hi!&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Does anyone know any updates on this matter? I'm speciffically interested in updating all my share users's (site and user's) dashboards to the latest custom layout configuration, make them all go back to this new "default" view, is this possible without creating a new site? or without having to log in as every user and change the dashelts? presets only works for new, not existing layouts!&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;PLEASE HELP!&amp;nbsp; :idea:&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 29 Apr 2011 15:02:03 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/editing-default-user-and-site-dashboard-layout-dashlets/m-p/252915#M206045</guid>
      <dc:creator>flopez</dc:creator>
      <dc:date>2011-04-29T15:02:03Z</dc:date>
    </item>
  </channel>
</rss>

