<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0">
 <!-- Generated by Ektron CMS400.NET -->
 <channel>
  <title>Ektron Forums : How-To Connection Center</title>
  <link>http://dev.ektron.com/forum.aspx?g=topics&amp;f=186&amp;groupid=-1</link>
  <description>Discussions about how to do something in Ektron</description>
 <item>
  <title>Ektron DevCenter Rules - Reminder</title>
  <link>http://dev.ektron.com/forum.aspx?g=posts&amp;t=19148</link>
  <description><![CDATA[1 Replies, 11209 Views<br />Started by EktronBrian<br />Last Posted to on Thursday, April 12, 2012 2:46:12 AM by Mark F.<br /><br>
]]></description>
  <pubDate>Thu, 12 Apr 2012 06:46:12 GMT</pubDate>
 </item>
 <item>
  <title>Ektron CatalogPart Control 8.0.2.035 &amp; Blog</title>
  <link>http://dev.ektron.com/forum.aspx?g=posts&amp;t=42445</link>
  <description><![CDATA[0 Replies, 639 Views<br />Started by Shine Shoukkathali<br />Last Posted to on Tuesday, February 26, 2013 8:19:17 AM by Shine Shoukkathali<br /><p></p>
]]></description>
  <pubDate>Tue, 26 Feb 2013 13:19:17 GMT</pubDate>
 </item>
 <item>
  <title>Separate Pagebuilder from the ektron site</title>
  <link>http://dev.ektron.com/forum.aspx?g=posts&amp;t=42361</link>
  <description><![CDATA[0 Replies, 611 Views<br />Started by webzz<br />Last Posted to on Friday, February 15, 2013 12:43:59 PM by webzz<br /><p>Hi all,</p>
<div> </div>
<div>Has anyone ever tried to separate Pagebuilder from the actual Ektron site and workarea and use it in a 3-tier architecture?</div>
<div> </div>
<div>The only way (thinking out loud) to do this could be using API to dynamically assemble pagebuilder layouts and save it over a web service using the API?</div>
<div> </div>
<div> </div>
]]></description>
  <pubDate>Fri, 15 Feb 2013 17:43:59 GMT</pubDate>
 </item>
 <item>
  <title>Current page&#39;s MetaData</title>
  <link>http://dev.ektron.com/forum.aspx?g=posts&amp;t=40812</link>
  <description><![CDATA[2 Replies, 1184 Views<br />Started by brcaretti<br />Last Posted to on Friday, February 15, 2013 12:35:44 PM by brcaretti<br />It is a PageBuilder page, I am using the API, Ektron version 8.5 sp1.
]]></description>
  <pubDate>Fri, 15 Feb 2013 17:35:44 GMT</pubDate>
 </item>
 <item>
  <title>mime types</title>
  <link>http://dev.ektron.com/forum.aspx?g=posts&amp;t=42360</link>
  <description><![CDATA[0 Replies, 509 Views<br />Started by brcaretti<br />Last Posted to on Friday, February 15, 2013 12:19:59 PM by brcaretti<br /><p>Ektron seems to be blocking the mime types I add.  They are added to the web.config but the files are not being accessed.  Anyone know of a fix or work around.</p>
<p><pre><span> &lt;</span><span>staticContent</span><span>&gt;</span><span>            &lt;</span><span>mimeMap</span><span> </span><span>fileExtension</span><span>=</span>"<span>.vcl</span>"<span> </span><span>mimeType</span><span>=</span>"<span>text/plain</span>"<span> /&gt;</span><span>            &lt;</span><span>mimeMap</span><span> </span><span>fileExtension</span><span>=</span>"<span>.vcp</span>"<span> </span><span>mimeType</span><span>=</span>"<span>text/plain</span>"<span> /&gt;</span><span>        &lt;/</span><span>staticContent</span><span>&gt;</span></pre><pre><br /></pre></p>
]]></description>
  <pubDate>Fri, 15 Feb 2013 17:19:59 GMT</pubDate>
 </item>
 <item>
  <title>UserManager GetAssignedTaxonomies</title>
  <link>http://dev.ektron.com/forum.aspx?g=posts&amp;t=42308</link>
  <description><![CDATA[1 Replies, 749 Views<br />Started by Richard.Priddy<br />Last Posted to on Friday, February 15, 2013 6:09:13 AM by Richard.Priddy<br /><p>After a few communications with Ektron, I have finally got a solution to this problem. I have compiled it into a simple repository class that anyone needing these functions can use:</p>
<p></p>
<p><p>    public class CmsTaxonomyRepository</p>
<p>    {</p>
<p>        public IEnumerable&lt;TaxonomyData&gt; GetTaxonomyList(string parentName)</p>
<p>        {</p>
<p>            var taxonomyManager = new TaxonomyManager(ApiAccessMode.Admin);</p>
<p>            var taxonomyCriteria = new TaxonomyCriteria(TaxonomyProperty.Name, EkEnumeration.OrderByDirection.Ascending);</p>
<p>            </p>
<p>            taxonomyCriteria.AddFilter(TaxonomyProperty.Path, CriteriaFilterOperator.Contains, parentName);</p>
<p>            taxonomyCriteria.AddFilter(TaxonomyProperty.Name, CriteriaFilterOperator.DoesNotContain, parentName);</p>
<p></p>
<p>            return taxonomyManager.GetList(taxonomyCriteria).ToList();</p>
<p>        }</p>
<p></p>
<p>        public IEnumerable&lt;TaxonomyData&gt; GetTaxonomiesAssignedToUser(string parentName, long userId)</p>
<p>        {</p>
<p>            var commonApi = new Common();</p>
<p>            var directoryData = commonApi.EkContentRef.GetAllAssignedDirectory(userId, EkEnumeration.TaxonomyItemType.User);</p>
<p></p>
<p>            var taxonomyManager = new TaxonomyManager(ApiAccessMode.Admin);</p>
<p>            var taxonomyCriteria = new TaxonomyCriteria(TaxonomyProperty.Name, EkEnumeration.OrderByDirection.Ascending);</p>
<p></p>
<p>            if (!directoryData.Any())</p>
<p>            {</p>
<p>                return new List&lt;TaxonomyData&gt;();</p>
<p>            }</p>
<p></p>
<p>            taxonomyCriteria.AddFilter(TaxonomyProperty.Id, CriteriaFilterOperator.In, directoryData.Select(d =&gt; d.DirectoryId));</p>
<p>            </p>
<p>            return taxonomyManager.GetList(taxonomyCriteria).ToList();</p>
<p>        }</p>
<p></p>
<p>        public IEnumerable&lt;string&gt; GetUsernamesAssignedToTaxonomy(long? taxonomyId)</p>
<p>        {</p>
<p>            if (taxonomyId == null)</p>
<p>            {</p>
<p>                return new List&lt;string&gt;();</p>
<p>            }</p>
<p></p>
<p>            var commonApi = new Common();</p>
<p>            var directoryRequest = new DirectoryRequest { DirectoryId = taxonomyId.Value };</p>
<p>            var directoryData = commonApi.EkContentRef.GetAllDirectoryUser(ref directoryRequest);</p>
<p></p>
<p>            return directoryData.Select(d =&gt; d.Email);</p>
<p>       }</p>
<p></p>
<p>Just in case anyone else out there requires these functions.</p>
</p>
]]></description>
  <pubDate>Fri, 15 Feb 2013 11:09:13 GMT</pubDate>
 </item>
 <item>
  <title>Having issues configuring MS Search Server with CMS Server</title>
  <link>http://dev.ektron.com/forum.aspx?g=posts&amp;t=37999</link>
  <description><![CDATA[9 Replies, 5626 Views<br />Started by AMamut<br />Last Posted to on Wednesday, February 13, 2013 9:23:46 AM by edburdo<br /><p>I had the same issues as AMamut in the original post.</p>
<p> </p>
<p>I've checked and double-checked machine names and URLs.  I changed the Logon entry on the SharePoint site to use a different account for the two Ektron services.  Still nothing...</p>
<p> </p>
<p>After much frustration, I removed the firewall rule on my SharePoint server, and recreated it.  I also changed the URL for my SharePoint from the DNS entry (sharepoint.mysite.whatever) to the machine name.</p>
<p> </p>
<p>And it worked!</p>
<p> </p>
<p>It's now crawling my content... hopefully, this helps someone?  </p>
]]></description>
  <pubDate>Wed, 13 Feb 2013 14:23:46 GMT</pubDate>
 </item>
 <item>
  <title>Image urls with querystring</title>
  <link>http://dev.ektron.com/forum.aspx?g=posts&amp;t=42295</link>
  <description><![CDATA[0 Replies, 1323 Views<br />Started by TNance_2<br />Last Posted to on Friday, February 08, 2013 2:39:38 PM by TNance_2<br /><p>My ektron v8.6 recently started adding querystrings to the end of image urls. ie: image_logo.jpg?n=3936 </p>
<p>  </p>
It adds this when I select an image from the library through a smart form field.<p>  </p>
<p>Is this a configuration setting somewhere within ektron that I can turn this OFF?</p>
]]></description>
  <pubDate>Fri, 08 Feb 2013 19:39:38 GMT</pubDate>
 </item>
 <item>
  <title>Need help getting started...</title>
  <link>http://dev.ektron.com/forum.aspx?g=posts&amp;t=42277</link>
  <description><![CDATA[1 Replies, 687 Views<br />Started by luyendao<br />Last Posted to on Thursday, February 07, 2013 7:59:51 PM by jay_4<br /><p>Check this webinar</p>
<p> </p>
<p>http://www.ektron.com/Webinars/Details/Getting-Started--Developing-with-Ektron/</p>
<p></p>
<p>Also contact your Account manager for 8.1 download link</p>
]]></description>
  <pubDate>Thu, 07 Feb 2013 00:59:51 GMT</pubDate>
 </item>
 <item>
  <title>Dynamic Lists. Can it be done?</title>
  <link>http://dev.ektron.com/forum.aspx?g=posts&amp;t=42247</link>
  <description><![CDATA[0 Replies, 557 Views<br />Started by anna74<br />Last Posted to on Monday, February 04, 2013 1:43:19 PM by anna74<br /><p><span>We are looking to create a list of content of related items based on multiple taxonomy categories.  We discussed creating collections to pull this information but I think that might be too clunky (and not particularly dynamic), or having the editors including a div tag in the content query, but this, doesn't seem optimal.</span></p>
<p> </p>
<p>What is the best option for this?</p>
]]></description>
  <pubDate>Mon, 04 Feb 2013 18:43:19 GMT</pubDate>
 </item>
 <item>
  <title>SmartForm Custom XSLT not being used</title>
  <link>http://dev.ektron.com/forum.aspx?g=posts&amp;t=41999</link>
  <description><![CDATA[10 Replies, 2648 Views<br />Started by Rusty<br />Last Posted to on Friday, February 01, 2013 9:09:37 PM by Rusty<br />So this problem still exist and couldn't get it resolved... Has anyone else on the forum had ever faced same issue?
]]></description>
  <pubDate>Fri, 01 Feb 2013 02:09:37 GMT</pubDate>
 </item>
 <item>
  <title>Eliminating Userfield in Registation Form</title>
  <link>http://dev.ektron.com/forum.aspx?g=posts&amp;t=42236</link>
  <description><![CDATA[0 Replies, 663 Views<br />Started by anna74<br />Last Posted to on Friday, February 01, 2013 2:07:17 PM by anna74<br />We want to replace the user name field with email address. What is the best way to do this?
]]></description>
  <pubDate>Fri, 01 Feb 2013 19:07:17 GMT</pubDate>
 </item>
 <item>
  <title>PhotoGallery Server Control</title>
  <link>http://dev.ektron.com/forum.aspx?g=posts&amp;t=42205</link>
  <description><![CDATA[0 Replies, 950 Views<br />Started by yssirhc<br />Last Posted to on Wednesday, January 30, 2013 4:19:09 PM by yssirhc<br /><p>Does anyone know how to make the pictures display horizontally across rather than vertically?  I'd like to fit as many pictures as possible in the first row and then have it spill over to the next.</p>
<p> </p>
<p>I don't see any properties for this feature.  Looking at the generated html shows each image in a new &lt;tr&gt; tag, and I'd really like a second column.</p>
<p> </p>
<p>On a side note, I also noticed that if you upload a picture via drag and drop, the resulting image is tiny.  How can this be fixed?  Or is there a way to disable the drag and drop?</p>
<p> </p>
<p>This is version 8.6</p>
]]></description>
  <pubDate>Wed, 30 Jan 2013 21:19:09 GMT</pubDate>
 </item>
 <item>
  <title>Upgrading Db from 8.5 SP1 to 8.5 SP3</title>
  <link>http://dev.ektron.com/forum.aspx?g=posts&amp;t=42177</link>
  <description><![CDATA[0 Replies, 592 Views<br />Started by Jinjur_2<br />Last Posted to on Monday, January 28, 2013 9:21:39 AM by Jinjur_2<br /><p>Just wondering, are there scripts available to upgrade the Ektron database or is it only possible using the install utility?</p>
<p></p>
<p>Can this be run on the actual DB server rather than the architecture itself from teh web server?<br /><br /></p>
<p>regards</p>
<p>Andy</p>
]]></description>
  <pubDate>Mon, 28 Jan 2013 14:21:39 GMT</pubDate>
 </item>
 <item>
  <title>Need help with EwebEditPro custom styles</title>
  <link>http://dev.ektron.com/forum.aspx?g=posts&amp;t=19252</link>
  <description><![CDATA[5 Replies, 7424 Views<br />Started by Eric Pugh<br />Last Posted to on Friday, January 25, 2013 10:40:49 AM by LaMo<br />Our custom stylesheet has styles like<div>ul.arrow</div>
<p>ul.bulleted</p>
<p>a.arrow</p>
<p></p>
<p>but when that style is applied the </p>
<p>&lt;ul&gt;&lt;li&gt;&lt;/li&gt;&lt;li&gt;&lt;/li&gt;&lt;/ul&gt;  becomes &lt;ul&gt;&lt;span class="bulleted"&gt;&lt;li&gt;&lt;/li&gt;&lt;li&gt;&lt;/li&gt;&lt;/span&gt;&lt;/ul&gt;</p>
<p>instead of &lt;ul class="bulleted"&gt;&lt;li&gt;&lt;/li&gt;&lt;li&gt;&lt;/li&gt;&lt;/ul&gt;</p>
<p></p>
<p>and &lt;a&gt;&lt;/a&gt; becomes &lt;a&gt;&lt;span class="arrow"&gt;&lt;/span&gt;&lt;a&gt; instead of &lt;a class="arrow"&gt;&lt;/a&gt;</p>
<p></p>
<p>How can this be fixed. Thanks in advance.</p>
]]></description>
  <pubDate>Fri, 25 Jan 2013 15:40:49 GMT</pubDate>
 </item>
 <item>
  <title>bad login example in reference guide</title>
  <link>http://dev.ektron.com/forum.aspx?g=posts&amp;t=42140</link>
  <description><![CDATA[1 Replies, 1206 Views<br />Started by yssirhc<br />Last Posted to on Thursday, January 24, 2013 2:56:42 PM by yssirhc<br /><p>Apparently you need to add a reference to the Ektron.Cms.Contracts dll.</p>
<p>And no Using is required.</p>
<p> </p>
<p>This information should really be noted within the description tab of the documentation!</p>
]]></description>
  <pubDate>Thu, 24 Jan 2013 19:56:42 GMT</pubDate>
 </item>
 <item>
  <title>Precompiling Widgets</title>
  <link>http://dev.ektron.com/forum.aspx?g=posts&amp;t=42101</link>
  <description><![CDATA[0 Replies, 804 Views<br />Started by berlioz<br />Last Posted to on Saturday, January 19, 2013 6:16:52 AM by berlioz<br />I am trying to use the OnTrek 8.6 site to conduct my widget functional testing. The problem is that the browser is so slow when requesting the PageBuilder template hosting the widget under development. From several hours of studying about ASPNET_COMPILER http://www.asp.net/web-forms/tutorials/deployment/deploying-web-site-projects/precompiling-your-website-vb ; and since I am developing my user-control(s)in a WEBSITEPROJECT,  And RUNNING ONTREK8.6 AS a WEBSITEPROJECT as well, that everytime when I request the template page from a browser, after making a change to the code-behind code of a widget, that it is compiling the entire site from scratch. From Scott Mitchell's article this is called automatic compilication. So my debug cycle includes a 2.5 to 3 minute wait just to get my page to load, so that I can view the widget I am developing and check to see that the changes I have made in code FUNCTION correctly. This is an inordinate amount of time to wait. So, how can I JUST pre-compile or just COMPILE the widgets folder, and/also potentially the template page that hosts the widget under development so that when I request the page from the browser, I don't have to wait 2-3 minutes for it to serve up(display) in the browser.Furthermore,  I am confused, because WEBSITEPROJECTS don't have PROJ files, so I don't think I can use MSBUILD to customize the build process e.g. exclude a folder from compilation like "WORKAREA". I am really confused. Can someone please point me in the right direction. At work, I can't afford 2-3 minutes of waiting to see if my changes have taken the affect I desire.
]]></description>
  <pubDate>Sat, 19 Jan 2013 11:16:52 GMT</pubDate>
 </item>
 <item>
  <title>Regarding Ektron Web Forms to email</title>
  <link>http://dev.ektron.com/forum.aspx?g=posts&amp;t=41831</link>
  <description><![CDATA[1 Replies, 4188 Views<br />Started by sanoske312<br />Last Posted to on Tuesday, January 15, 2013 12:44:49 PM by akDaniel<br />Definitely possible...what you will want to do is create a custom action page for the form to submit the data to.  What you can then do is generate a custom email inside that action page and sent the data in any format you desire.
]]></description>
  <pubDate>Tue, 15 Jan 2013 17:44:49 GMT</pubDate>
 </item>
 <item>
  <title>Strongly Typed SmartForms</title>
  <link>http://dev.ektron.com/forum.aspx?g=posts&amp;t=42011</link>
  <description><![CDATA[0 Replies, 634 Views<br />Started by Scott CoB<br />Last Posted to on Wednesday, January 09, 2013 4:10:34 PM by Scott CoB<br /><p>I was able to build my smartform class using vs.net command line xsd.  I can follow the example online using GetList, but for some reason, I can't seem to get the ContentManager.GetItem function to work here.  I want to parse the contents of a single content item, where I know the ContentId</p>
<p> </p>
]]></description>
  <pubDate>Wed, 09 Jan 2013 21:10:34 GMT</pubDate>
 </item>
 <item>
  <title>Multiple Ektron sites with Search Server Express</title>
  <link>http://dev.ektron.com/forum.aspx?g=posts&amp;t=41922</link>
  <description><![CDATA[0 Replies, 1125 Views<br />Started by Jinjur_2<br />Last Posted to on Thursday, December 27, 2012 7:03:26 AM by Jinjur_2<br />Hi everyone,<div></div>
<div>Just a quick question before i get started into some work here.</div>
<div></div>
<div>Does anyone know off the top of their head if it is possible to hook up several Ektron sites to the same Search Server Express system?</div>
<div></div>
<div>They will all obviously have to be very separate, we want no search results crossing over but I haven't tried this and was wondering if anyone else had?<br /><br />Cheers</div>
<div>Andy</div>
]]></description>
  <pubDate>Thu, 27 Dec 2012 12:03:26 GMT</pubDate>
 </item>
 <item>
  <title>newline in constant</title>
  <link>http://dev.ektron.com/forum.aspx?g=posts&amp;t=41909</link>
  <description><![CDATA[0 Replies, 1700 Views<br />Started by olivia.z<br />Last Posted to on Monday, December 24, 2012 9:11:30 PM by olivia.z<br /><p>hello all,</p>
<p> </p>
<p>My Ektron is V86</p>
<p>when i run CMS400Min.sln in VS2010 here comes an error.</p>
<p><span>Error        
1       c:\inetpub\wwwroot\Workarea\Commerce\Coupons\SharedComponents\Type\Type.ascx.cs(212):
error CS1010: Newline in
constant           </span></p>
<p><span><br /></span></p>
<p><span>This is the error line:</span></p>
<p> </p>
<p><span lang="EN-US"> </span></p>
<p><span lang="EN-US">clientData.CurrencySymbol = couponType ==
TypeClientData.CouponTypes.Percent ? "? : currency.CurrencySymbol;</span></p>
<p> </p>
<p><span lang="EN-US"><br /></span></p>
<p><font face="Calibri, sans-serif" size="2">i haven't change a word.it's strange.</font></p>
<p><font face="Calibri, sans-serif" size="2">I don't know how to fix this, it takes me a lot of time.</font></p>
<p><font face="Calibri, sans-serif" size="2">can anybody kindly help me with this?</font></p>
<p><font face="Calibri, sans-serif" size="2"><br /></font></p>
<p><font face="Calibri, sans-serif" size="2">Thank you very much.</font></p>
<p><font face="Calibri, sans-serif" size="2">olivia</font></p>
]]></description>
  <pubDate>Mon, 24 Dec 2012 02:11:30 GMT</pubDate>
 </item>
 <item>
  <title>notify topic starter of new replies</title>
  <link>http://dev.ektron.com/forum.aspx?g=posts&amp;t=41856</link>
  <description><![CDATA[2 Replies, 1261 Views<br />Started by nickr_3<br />Last Posted to on Thursday, December 20, 2012 1:30:05 PM by nickr_3<br /><p>The solution is much simpler than that:</p>
<p> </p>
<p> </p>
<p>        userdata.Username = username;<br />        userdata.Password = password;<br />        userdata.DisplayName = username;<br />        userdata.DisplayUserName = username;<br />        userdata.Domain = domain;<br />        userdata.Email = mail;<br />        userdata.FirstName = firstname;<br />        userdata.LastName = lastname;<br />        try<br />        {<br />            userapi.AddMembershipUser(userdata);<br />            UserData cUser = userapi.GetMembershipUser(username);<br />            Ektron.Cms.API.Content.ThreadedDiscussion td = new Ektron.Cms.API.Content.ThreadedDiscussion();<br />            td.SubscribeToBoard(DiscussionBoardID, cUser.Id, EkEnumeration.NotificationType.Replies); //DiscussionBoardID is the board that contains all the forums<br />            mCreated = true;<br />        }<br /><br /></p>
]]></description>
  <pubDate>Thu, 20 Dec 2012 18:30:05 GMT</pubDate>
 </item>
 <item>
  <title>Form Postback not rendering correctly</title>
  <link>http://dev.ektron.com/forum.aspx?g=posts&amp;t=41801</link>
  <description><![CDATA[0 Replies, 814 Views<br />Started by Lorenzo_3<br />Last Posted to on Wednesday, December 12, 2012 12:30:40 PM by Lorenzo_3<br /><p>Hi all,</p>
<p> </p>
<p>I have created a form with a postback that has merge fields.  When the form is submitted and the postback renders all the text fields data are displayed vertically and do not wrap.  Any ideas on why this may be happening and how to correct?  I have included an screenshot for review.</p>
<p> </p>
<p>Thanks in advance,</p>
<p> </p>
<p>Lorenzo</p>
]]></description>
  <pubDate>Wed, 12 Dec 2012 17:30:40 GMT</pubDate>
 </item>
 <item>
  <title>Accessing DMS Documents from a Remote Server</title>
  <link>http://dev.ektron.com/forum.aspx?g=posts&amp;t=41748</link>
  <description><![CDATA[0 Replies, 1048 Views<br />Started by BJH_TH<br />Last Posted to on Thursday, December 06, 2012 9:32:55 AM by BJH_TH<br /><p>Multi-site is not an option in this scenario.</p>
<p> </p>
<p>We have an external site in our DMZ, from which we'd like to serve up a subset of web pages and DMS documents housed on an internal server, where that internal server is not accessible by external users. </p>
<p> </p>
<p>In a world of APIs and connectors, it seems like it should be possible to do. </p>
<p> </p>
<p>Via the Ektron API, we can access all of the HTML, taxonomy, and DMS meta data, to recreate the pages, via server-server API calls.  However, getting the DMS documents pulled in and references to those documents to create clickable links where they would be accessible by users is another animal. </p>
<p> </p>
<p>Any suggestions on how this may be accomplished?  What we want to avoid is maintaining those documents in two separate places, where they could ultimately get out of synch.  The constraint again, is that all communication to the internal server, must be made from the <strong>server</strong> in the DMZ. No external users can refrence the internal server in any manner (no virtual directories).</p>
]]></description>
  <pubDate>Thu, 06 Dec 2012 14:32:55 GMT</pubDate>
 </item>
 <item>
  <title>Creating a sub-menu instead of page content, with static text</title>
  <link>http://dev.ektron.com/forum.aspx?g=posts&amp;t=41656</link>
  <description><![CDATA[5 Replies, 1847 Views<br />Started by DrKen<br />Last Posted to on Wednesday, December 05, 2012 11:42:01 PM by DrKen<br /><p>I'm feeling pretty bad off tonight.  I went to the Content menu bar choice.</p>
<p>I saw a list of folders for my site. I clicked on the one of interest, my college's "Library".  This caused a list of things to appear on the right side of the screen.  At the top, I put my mouse over "New" and chose "Menu".  I tried to create a menu but it did not seem to work in that, while the system seems to think the menu exists, I cannot see it in the list of menu tiems for the Library folder.  From reading the doc, I think that the menu needs a URL link, which would be the link someone would use to get to this menu, right?  That means the URL Link is going to be /Library/LibraryTutorials, right?  Or, am I misunderstanidng this?  URL link makes me think "href", the URL to get me to a page.   </p>
<p> </p>
<p>     Or, am I suppopsed to create an actual page, not a menu first, in order to give the menu something to point at?   It's very frustrating to be able to do all sorts of things with other software and be so far from figuring out the trick for something simple.  I would really appreciate suggestions on how toresolve this.  Yes, I have read page after page of the help pages on menus:  adding them, deleting them, adding a submenu to them, but I'm still stumped.  Thanks</p>
<p> </p>
<p>Ken</p>
]]></description>
  <pubDate>Wed, 05 Dec 2012 04:42:01 GMT</pubDate>
 </item>
 <item>
  <title>Inheriting Templates</title>
  <link>http://dev.ektron.com/forum.aspx?g=posts&amp;t=41724</link>
  <description><![CDATA[2 Replies, 1017 Views<br />Started by yssirhc<br />Last Posted to on Tuesday, December 04, 2012 12:15:52 PM by yssirhc<br />Yes, this would be a very beneficial feature.  Thanks.
]]></description>
  <pubDate>Tue, 04 Dec 2012 17:15:52 GMT</pubDate>
 </item>
 <item>
  <title>Setting default folder for a Content Selector Meta data type</title>
  <link>http://dev.ektron.com/forum.aspx?g=posts&amp;t=41658</link>
  <description><![CDATA[0 Replies, 1066 Views<br />Started by Ian Layton<br />Last Posted to on Tuesday, November 27, 2012 12:26:42 PM by Ian Layton<br />Using Ektron 8.5 SP3<div></div>
<p>We are using a Content Selector meta data type object for a piece of content to link it to a related content. When clicking on the 'Edit' button, it brings up the page to allow the user to select the piece of content to link it to. However, the starting folder seems to be a random folder (it's always the same) that almost none of our editors have access too. This causes confusion because it pops an error message. </p>
<p></p>
<p>Is there a way to change this default folder it lands in?</p>
]]></description>
  <pubDate>Tue, 27 Nov 2012 17:26:42 GMT</pubDate>
 </item>
 <item>
  <title>Testing-Strategy for Widgets!!!</title>
  <link>http://dev.ektron.com/forum.aspx?g=posts&amp;t=41609</link>
  <description><![CDATA[2 Replies, 1281 Views<br />Started by berlioz<br />Last Posted to on Tuesday, November 20, 2012 4:11:57 PM by Bill C.<br /><p>I typically follow an approach similar to the one blogged about by Joe Mayberry @jaytem. My widgets are typically data driven user controls that bind to a datasource. I do this so I can point to a mock datasource that doesn't depend on Ektron, then when I'm happy with its implementation, I point it to my ektron datasource, load it into the workarea, and go from there.</p>
<p> </p>
<p> </p>
<p>Read Joe's blog post mentioned by EG above, then watch this webinar on layering an application. Doesn't specifically mention widgets, but you can follow the general approach with widgets just fine--</p>
<p> </p>
<p><a href="http://www.ektron.com/Resources_And_Tools/Webinars/Screencasts/Developer_/_I_T_/Building_an_Extensible_and_Maintainable_Website_on_Ektron_-_Part_1/">http://www.ektron.com/Resources_And_Tools/Webinars/Screencasts/Developer_/_I_T_/Building_an_Extensible_and_Maintainable_Website_on_Ektron_-_Part_1/</a></p>
]]></description>
  <pubDate>Tue, 20 Nov 2012 21:11:57 GMT</pubDate>
 </item>
 <item>
  <title>OnTrek login to WorkArea</title>
  <link>http://dev.ektron.com/forum.aspx?g=posts&amp;t=41559</link>
  <description><![CDATA[2 Replies, 1155 Views<br />Started by berlioz<br />Last Posted to on Tuesday, November 20, 2012 12:53:38 PM by berlioz<br /><p>apparently I was loggin in just fine, in other words, admin-admin worked..What's wrong is that redirection mechanism is not working...it might be my browser...IE. In other words, after entering admin (userName) and admin(passWord), and click submit, the page just bounces back with empty fields....It should redirect me to the workarea.aspx page....No Sir...I have to enter the path into the address bar. Once I did that, I realized that I "was" being logged in. Can anybody think of why it would behave this way???</p>
<div class="vimiumReset vimiumHUD"></div>
]]></description>
  <pubDate>Tue, 20 Nov 2012 17:53:38 GMT</pubDate>
 </item>
 <item>
  <title>OnTrekSP1-Cant login</title>
  <link>http://dev.ektron.com/forum.aspx?g=posts&amp;t=41556</link>
  <description><![CDATA[1 Replies, 962 Views<br />Started by berlioz<br />Last Posted to on Thursday, November 15, 2012 2:16:47 PM by Bill C.<br />hm. since you're hitting /WorkArea/login.aspx, are you sure it's not logging you in? That page wont do anything if you hit it directly and log in there. You'll have to visit another page, like /WorkArea/WorkArea.aspx yourself after logging in. If that's not working, then some questions to consider-- can you log in alright with any other users? any message in the server event log after you try to log in? have you tried to login with builtin? might there be a license issue, if so can you hit the site over localhost?
]]></description>
  <pubDate>Thu, 15 Nov 2012 19:16:47 GMT</pubDate>
 </item>
 <item>
  <title>Read Taxonomy Custom Property with Ektron API</title>
  <link>http://dev.ektron.com/forum.aspx?g=posts&amp;t=33112</link>
  <description><![CDATA[9 Replies, 7881 Views<br />Started by jbryant63<br />Last Posted to on Tuesday, November 06, 2012 7:40:54 PM by ZeroAbsolute<br /><p>Sorry about bumming up a old post. I'm trying to get a taxonomy's custom property value on 8.6SP1 but I'm coming across some issues on the 3tier sites when I'm using the <span id="ctl00_mainContent_Forum1"></span><span id="ctl00_mainContent_Forum1">CustomPropertyObject. Would you be able to let me know how I can get the custom property value on the 3 tier site?</span></p>
<p> <span></span></p>
<p>Using <span id="ctl00_mainContent_Forum1">the code eGandalf provided I run into unity mapping issues in the 3 tier site but works on the middle tier site.</span><br /><span></span></p>
]]></description>
  <pubDate>Tue, 06 Nov 2012 00:40:54 GMT</pubDate>
 </item>
 <item>
  <title>Remove a user from a user group - Ektron 8.5</title>
  <link>http://dev.ektron.com/forum.aspx?g=posts&amp;t=41030</link>
  <description><![CDATA[4 Replies, 1369 Views<br />Started by Ken Slater<br />Last Posted to on Tuesday, November 06, 2012 2:59:25 PM by Bob B_Ektron<br /><p>Kelly,</p>
<p> </p>
<p>Are you a  member of the administrators group?  Also, are you trying to remove users from the Everyone group?</p>
]]></description>
  <pubDate>Tue, 06 Nov 2012 19:59:25 GMT</pubDate>
 </item>
 <item>
  <title>First widget won&#39;t display</title>
  <link>http://dev.ektron.com/forum.aspx?g=posts&amp;t=41388</link>
  <description><![CDATA[1 Replies, 1050 Views<br />Started by berlioz<br />Last Posted to on Monday, November 05, 2012 4:34:25 PM by berlioz<br /><p>The key is to NOT place your widget files in a folder underneath the widgets folder. They need to reside AT THE root of the widgets folder. You can place ALL ELSE in a folder with the same name as the user control file AND place other assest in there such as css and javascript.</p>
<div class="vimiumReset vimiumHUD"></div>
]]></description>
  <pubDate>Mon, 05 Nov 2012 21:34:25 GMT</pubDate>
 </item>
 <item>
  <title>Quicklinks for TaxonomyItemData</title>
  <link>http://dev.ektron.com/forum.aspx?g=posts&amp;t=41339</link>
  <description><![CDATA[2 Replies, 1140 Views<br />Started by kcamp<br />Last Posted to on Monday, November 05, 2012 11:35:17 AM by kcamp<br />May have to go that route.  Thanks.
]]></description>
  <pubDate>Mon, 05 Nov 2012 16:35:17 GMT</pubDate>
 </item>
 <item>
  <title>IWidget on 8.6</title>
  <link>http://dev.ektron.com/forum.aspx?g=posts&amp;t=41337</link>
  <description><![CDATA[0 Replies, 1087 Views<br />Started by berlioz<br />Last Posted to on Friday, November 02, 2012 11:07:50 AM by berlioz<br /><p>Where is IWidget interface on Ektron 8.6 ???</p>
<div class="vimiumReset vimiumHUD"></div>
]]></description>
  <pubDate>Fri, 02 Nov 2012 15:07:50 GMT</pubDate>
 </item>
 <item>
  <title>Can&#39;t find the ViewSet.SetActiveView()</title>
  <link>http://dev.ektron.com/forum.aspx?g=posts&amp;t=41335</link>
  <description><![CDATA[1 Replies, 1052 Views<br />Started by berlioz<br />Last Posted to on Friday, November 02, 2012 10:50:31 AM by berlioz<br /><p>Uh, I figured it out. It looks like th samples on line require you to use an ASP.NET multiview control, to wrap user-specific infomation. I will do that next, and ViewSet.SetActiveviewz() should be available. <img src="http://dev.ektron.com/WorkArea/threadeddisc/emoticons/happy.png" alt="/WorkArea/threadeddisc/emoticons/happy.png" title="/WorkArea/threadeddisc/emoticons/happy.png" /></p>
<div class="vimiumReset vimiumHUD"> </div>
<div class="vimiumReset vimiumHUD"></div>
]]></description>
  <pubDate>Fri, 02 Nov 2012 14:50:31 GMT</pubDate>
 </item>
 <item>
  <title>Newbie: Making first Widget</title>
  <link>http://dev.ektron.com/forum.aspx?g=posts&amp;t=41304</link>
  <description><![CDATA[2 Replies, 1229 Views<br />Started by berlioz<br />Last Posted to on Friday, November 02, 2012 10:17:03 AM by berlioz<br />I figured it out. I had installed Ektron alreay. I just was looking in the wrong place for the Ektron assemblies. They are located in the installation area, I wasn't finding them under the .NET tab. I had to choose the Browse tab and go the location pictured in the attached picture(might be different for you, as you can specify the installation direction wherever you wish.).
]]></description>
  <pubDate>Fri, 02 Nov 2012 14:17:03 GMT</pubDate>
 </item>
 <item>
  <title>Question on Ektron and Application Request Routing in IIS7</title>
  <link>http://dev.ektron.com/forum.aspx?g=posts&amp;t=41320</link>
  <description><![CDATA[0 Replies, 1200 Views<br />Started by EkRook<br />Last Posted to on Thursday, November 01, 2012 8:03:09 PM by EkRook<br /><p>Hi everyone,</p>
<p> </p>
<p>I am wondering if there are any known conflicts between Ektron version 8.5 and the optional Application Request Routing feature in IIS7. </p>
<p> </p>
<p>Please forgive my lack of knowledge of Ektron. I am not actually a developer; I work for a software company that is installing product for a customer who uses Ektron on their web server. The program we are installing has a web component and we are unable to get the webpage to successfully launch. As far as we can tell, the only difference between this and other sites we have successfully installed in the past is that <em>this</em> site utilizes Ektron. We do utilize the Application Request Routing feature in IIS7 and I'm wondering if it and Ektron may be incompatible.</p>
<p> </p>
<p>Any thoughts would be very much appreciated.</p>
<p>Thank you!</p>
<p> </p>
<p> </p>
<p> </p>
]]></description>
  <pubDate>Thu, 01 Nov 2012 00:03:09 GMT</pubDate>
 </item>
 <item>
  <title>Newbie</title>
  <link>http://dev.ektron.com/forum.aspx?g=posts&amp;t=41290</link>
  <description><![CDATA[1 Replies, 1254 Views<br />Started by berlioz<br />Last Posted to on Thursday, November 01, 2012 3:31:07 PM by Bill C.<br />Hey Berlioz, not quite sure what you're looking for, but the first video in this blog post should at least help you get started with setting up your dev environment and working with assemblies. <a href="http://www.ektron.com/billcavablog/5-Webinars-Every-Ektron-Developer-Needs-to-Watch/">http://www.ektron.com/billcavablog/5-Webinars-Every-Ektron-Developer-Needs-to-Watch/</a>
]]></description>
  <pubDate>Thu, 01 Nov 2012 19:31:07 GMT</pubDate>
 </item>
 <item>
  <title>Using 3rd party user controls as widgets</title>
  <link>http://dev.ektron.com/forum.aspx?g=posts&amp;t=41210</link>
  <description><![CDATA[4 Replies, 1242 Views<br />Started by Tincho<br />Last Posted to on Monday, October 29, 2012 4:33:24 PM by Tincho<br /><p>I will try that out, thanks again!</p>
<p></p>
<p>Martin</p>
]]></description>
  <pubDate>Mon, 29 Oct 2012 20:33:24 GMT</pubDate>
 </item>
 <item>
  <title>change language en nav buttons [last][next] etc</title>
  <link>http://dev.ektron.com/forum.aspx?g=posts&amp;t=41203</link>
  <description><![CDATA[4 Replies, 1227 Views<br />Started by josip<br />Last Posted to on Friday, October 26, 2012 2:21:28 PM by josip<br />we are using the metadatalist control
]]></description>
  <pubDate>Fri, 26 Oct 2012 18:21:28 GMT</pubDate>
 </item>
 <item>
  <title>flex menu xml not including items</title>
  <link>http://dev.ektron.com/forum.aspx?g=posts&amp;t=41162</link>
  <description><![CDATA[5 Replies, 1255 Views<br />Started by yssirhc<br />Last Posted to on Wednesday, October 24, 2012 2:53:11 PM by eGandalf<br />Occam's razor strikes again. <img src="http://dev.ektron.com/WorkArea/threadeddisc/emoticons/happy.png" />
]]></description>
  <pubDate>Wed, 24 Oct 2012 18:53:11 GMT</pubDate>
 </item>
 <item>
  <title>Using Smart Forms to manage content for specific areas</title>
  <link>http://dev.ektron.com/forum.aspx?g=posts&amp;t=41158</link>
  <description><![CDATA[7 Replies, 1317 Views<br />Started by DWSier<br />Last Posted to on Wednesday, October 24, 2012 11:07:11 AM by jaytem<br />Agreed. It's great for very tight control, not so great if you want the same thing applied to many different items. Especially if it is on a folder basis. Then the smart form is the way to go.
]]></description>
  <pubDate>Wed, 24 Oct 2012 15:07:11 GMT</pubDate>
 </item>
 <item>
  <title>Add title attribute to image in XSL</title>
  <link>http://dev.ektron.com/forum.aspx?g=posts&amp;t=41018</link>
  <description><![CDATA[4 Replies, 1885 Views<br />Started by Avi Janssen<br />Last Posted to on Wednesday, October 24, 2012 5:03:49 AM by Avi Janssen<br />I could not get the first method to work, but the 2nd worked like a charm. You're a life saver. Thanks!
]]></description>
  <pubDate>Wed, 24 Oct 2012 09:03:49 GMT</pubDate>
 </item>
 <item>
  <title>Adding Calendar Appointment to Microsoft Outlook</title>
  <link>http://dev.ektron.com/forum.aspx?g=posts&amp;t=41100</link>
  <description><![CDATA[1 Replies, 1204 Views<br />Started by Lorenzo_3<br />Last Posted to on Tuesday, October 23, 2012 3:44:47 PM by eGandalf<br />I don't think it's a glitch with what Ektron is doing. I mean, .ics files are pretty standard. You try this yourself by exporting an event from another calendar (iCal, Outlook/Win) as an .ics file, toss the file up on your server, then download the file using Outlook/OSX and see if it behaves differently. If so, then yes, there may be a glitch in what Ektron is providing. If it behaves the same, then it's in how Outlook/OSX is attempting to support the file type.
]]></description>
  <pubDate>Tue, 23 Oct 2012 19:44:47 GMT</pubDate>
 </item>
 <item>
  <title>8.5 search on GoLiveDate or ExpiryDate</title>
  <link>http://dev.ektron.com/forum.aspx?g=posts&amp;t=41137</link>
  <description><![CDATA[0 Replies, 1128 Views<br />Started by John P. Reilly<br />Last Posted to on Monday, October 22, 2012 7:04:12 PM by John P. Reilly<br /><p>In 8.6 search, we're getting content back that is past its expiry date.</p>
<p>I added a filter that looks like this:</p>
<p>expressionTree &amp;= SearchContentProperty.ExpiryDate.GreaterThan(DateTime.Today);</p>
<p>and that caused no content to come back at all.</p>
<p></p>
<p>I looked at the item expiry dates and seed that the default is "1/1/00 12:00:00".  I have tried various ways to test for that as well, including IsNotNull, EqualTo(new DateTime("1/1/00")), etc.  Some give exceptions for invalid file time.  Others just continue to get no results.</p>
<p></p>
<p>Can't find any documentation regarding this.<br />Anyone?</p>
<p>Thanks.</p>
<p>-jpr</p>
]]></description>
  <pubDate>Mon, 22 Oct 2012 23:04:12 GMT</pubDate>
 </item>
 <item>
  <title>How to load Bootstrap/jQ/jQUI programatically</title>
  <link>http://dev.ektron.com/forum.aspx?g=posts&amp;t=40992</link>
  <description><![CDATA[1 Replies, 1204 Views<br />Started by Champs<br />Last Posted to on Monday, October 15, 2012 4:02:34 PM by eGandalf<br />Well... loading the CSS and JS can be done through Ektron.Cms.Framework.UI.Css and Ektron.Cms.Framework.JavaScript, respectively. Any HTML can be loaded via user control or whatever other means you like.
]]></description>
  <pubDate>Mon, 15 Oct 2012 20:02:34 GMT</pubDate>
 </item>
 <item>
  <title>Show/Hide menu items</title>
  <link>http://dev.ektron.com/forum.aspx?g=posts&amp;t=40734</link>
  <description><![CDATA[1 Replies, 1315 Views<br />Started by brcaretti<br />Last Posted to on Monday, October 15, 2012 3:59:08 PM by eGandalf<br /><p>Permissions still apply to pagebuilder layouts created in the CMS, and menus adhere to permissions. So it should be automatic if you have all your permissions set up correctly. Of course, it won't work if your menu items are addes as "External Hyperlinks" because they then lose their connection to the content.</p>
<p>     </p>
<p>If you're using the API to retrieve the menu data, it may be a different story, but I'm not sure.</p>
]]></description>
  <pubDate>Mon, 15 Oct 2012 19:59:08 GMT</pubDate>
 </item>
 <item>
  <title>CMS400min site required?</title>
  <link>http://dev.ektron.com/forum.aspx?g=posts&amp;t=40913</link>
  <description><![CDATA[2 Replies, 1219 Views<br />Started by Jinjur_2<br />Last Posted to on Monday, October 15, 2012 3:57:09 PM by eGandalf<br />The minsite installer does configure a number of values in an otherwise incomplete web.config. Those are required for it to run correctly. That should be at least part of the problem.
]]></description>
  <pubDate>Mon, 15 Oct 2012 19:57:09 GMT</pubDate>
 </item>
 <item>
  <title>UserControls &amp; Resources</title>
  <link>http://dev.ektron.com/forum.aspx?g=posts&amp;t=41055</link>
  <description><![CDATA[0 Replies, 1035 Views<br />Started by berlioz<br />Last Posted to on Monday, October 15, 2012 2:35:53 PM by berlioz<br /><p>How do you "embed" and/or "resource" a  JavaScript with a user control...authored in an ASP.NET web site project for ultimate redistribution...see David Ebbo's article...<strong><span>http://tinyurl.com/8hfpzr7</span></strong></p>
<div class="vimiumReset vimiumHUD"></div>
]]></description>
  <pubDate>Mon, 15 Oct 2012 18:35:53 GMT</pubDate>
 </item>
 </channel>
</rss>
