<?xml version="1.0" encoding="UTF-8" ?>
<?xml-stylesheet type="text/xsl" href="http://forums.asp.net/utility/FeedStylesheets/rss.xsl" media="screen"?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:wfw="http://wellformedweb.org/CommentAPI/"><channel><title>DotNetNuke</title><link>http://www.dotnetnuke.com/tabid/795/Default.aspx</link><description>Discussions of DotNetNuke for ASP.NET 1.x and above.  &lt;a href="http://www.dotnetnuke.com/" target="_blank"&gt;DNN Home&lt;/a&gt; &lt;a href="http://aspadvice.com/SignUp/list.aspx?l=105&amp;c=25" target="_blank"&gt;Email List&lt;/a&gt;</description><dc:language>en</dc:language><generator>CommunityServer 2007 SP1 (Build: 20510.895)</generator><item><title>Re: 3.2 solpart issue?</title><link>http://forums.asp.net/thread/1122113.aspx</link><pubDate>Wed, 23 Nov 2005 16:51:23 GMT</pubDate><guid isPermaLink="false">4c671506-2930-414c-a40b-8bf57ded5924:1122113</guid><dc:creator>jhenning</dc:creator><author>jhenning</author><slash:comments>0</slash:comments><comments>http://forums.asp.net/thread/1122113.aspx</comments><wfw:commentRss>http://forums.asp.net/commentrss.aspx?SectionID=90&amp;PostID=1122113</wfw:commentRss><description>I am sure it is possible, though I am not the guy to determine if we do it...&amp;nbsp; you may want to suggest this with the skin's author.&amp;nbsp; (Nina, I believe).</description></item><item><title>Re: 3.2 solpart issue?</title><link>http://forums.asp.net/thread/1118725.aspx</link><pubDate>Sun, 20 Nov 2005 23:03:23 GMT</pubDate><guid isPermaLink="false">4c671506-2930-414c-a40b-8bf57ded5924:1118725</guid><dc:creator>oakley</dc:creator><author>oakley</author><slash:comments>0</slash:comments><comments>http://forums.asp.net/thread/1118725.aspx</comments><wfw:commentRss>http://forums.asp.net/commentrss.aspx?SectionID=90&amp;PostID=1118725</wfw:commentRss><description>Hey Jon,&lt;BR&gt;&lt;BR&gt;In bridging between the existing method and the new suggested method, it would be useful to have a version of the default skins posted at DotNetNuke.com. Would this be possible?&lt;BR&gt;</description></item><item><title>Re: 3.2 solpart issue?</title><link>http://forums.asp.net/thread/1108297.aspx</link><pubDate>Thu, 10 Nov 2005 01:52:36 GMT</pubDate><guid isPermaLink="false">4c671506-2930-414c-a40b-8bf57ded5924:1108297</guid><dc:creator>vasilis</dc:creator><author>vasilis</author><slash:comments>0</slash:comments><comments>http://forums.asp.net/thread/1108297.aspx</comments><wfw:commentRss>http://forums.asp.net/commentrss.aspx?SectionID=90&amp;PostID=1108297</wfw:commentRss><description>Hey Jon, really thanks for that!&lt;BR&gt;&lt;BR&gt;You did a great job organizing all this stuff!&lt;BR&gt;&lt;BR&gt;The Navigation Elements document is very detailed and helpful!&lt;BR&gt;&lt;BR&gt;Sure, you can count on me if you need a tester in the future!&lt;BR&gt;&lt;BR&gt;Thanks again!</description></item><item><title>Re: 3.2 solpart issue?</title><link>http://forums.asp.net/thread/1108278.aspx</link><pubDate>Thu, 10 Nov 2005 01:11:30 GMT</pubDate><guid isPermaLink="false">4c671506-2930-414c-a40b-8bf57ded5924:1108278</guid><dc:creator>jhenning</dc:creator><author>jhenning</author><slash:comments>0</slash:comments><comments>http://forums.asp.net/thread/1108278.aspx</comments><wfw:commentRss>http://forums.asp.net/commentrss.aspx?SectionID=90&amp;PostID=1108278</wfw:commentRss><description>Of course there is a much easier way around this issue if you can edit the skin.  As the document states I  am recommending everyone move towards the more organized way of setting these styles... so in your case if you used the CSSNodeSelectedRoot property in place of the RootMenuItemSelectedCssClass property it should work as well.</description></item><item><title>Re: 3.2 solpart issue?</title><link>http://forums.asp.net/thread/1108230.aspx</link><pubDate>Thu, 10 Nov 2005 00:10:30 GMT</pubDate><guid isPermaLink="false">4c671506-2930-414c-a40b-8bf57ded5924:1108230</guid><dc:creator>jhenning</dc:creator><author>jhenning</author><slash:comments>0</slash:comments><comments>http://forums.asp.net/thread/1108230.aspx</comments><wfw:commentRss>http://forums.asp.net/commentrss.aspx?SectionID=90&amp;PostID=1108230</wfw:commentRss><description>&lt;P&gt;You are correct, though it is not a solpart issue, rather a bug in how I am mapping the&amp;nbsp;menu skin object to the underlying navobject object.&amp;nbsp; If you are reading the navigation controls document you will notice an excel chart mapping the old properties to the new organized properties.&amp;nbsp; I have the RootMenuItemActiveCssClass and mapped to the CSSNodeSelectedRoot property and the RootMenuItemSelectedCssClass mapped to the CSSNodeHoverRoot when it should be the other way around.&amp;nbsp; Similary, the same properties dealing with the Sub items are swapped as well.&lt;BR&gt;&lt;BR&gt;So if you don't mind recompiling the core and need this fixed you could open up the SolpartMenu.ascx.vb file in admin\skins and replace the appropriate properties with this code.&lt;BR&gt;&lt;BR&gt;&amp;lt;code&amp;gt;&lt;BR&gt;&amp;nbsp;&amp;nbsp;Public Property RootMenuItemActiveCssClass() As String&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;Get&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;Return Me.CSSNodeHoverRoot&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;End Get&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;Set(ByVal Value As String)&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;Me.CSSNodeHoverRoot = Value&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;End Set&lt;BR&gt;&amp;nbsp;&amp;nbsp;End Property&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;Public Property SubMenuItemActiveCssClass() As String&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;Get&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;Return Me.CSSNodeHoverSub&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;End Get&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;Set(ByVal Value As String)&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;Me.CSSNodeHoverSub = Value&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;End Set&lt;BR&gt;&amp;nbsp;&amp;nbsp;End Property&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;Public Property RootMenuItemSelectedCssClass() As String&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;Get&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;Return Me.CSSNodeSelectedRoot&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;End Get&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;Set(ByVal Value As String)&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;Me.CSSNodeSelectedRoot = Value&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;End Set&lt;BR&gt;&amp;nbsp;&amp;nbsp;End Property&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;Public Property SubMenuItemSelectedCssClass() As String&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;Get&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;Return Me.CSSNodeSelectedSub&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;End Get&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;Set(ByVal Value As String)&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;Me.CSSNodeSelectedSub = Value&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;End Set&lt;BR&gt;&amp;nbsp;&amp;nbsp;End Property&lt;BR&gt;&amp;lt;/code&amp;gt;&lt;BR&gt;&lt;BR&gt;Thank you for pointing this out, for it is important.&amp;nbsp; Mapping all these properties was quite a chore and I was unsure I got them all correct.&amp;nbsp; This is why I recruited some skinners out there to try and regression test these changes against their existing skins.&amp;nbsp; Unfortunately this is one they missed.&amp;nbsp; If I ever undertake something like this again, I know who I will recruit as one of my testers :)&lt;/P&gt;</description></item><item><title>3.2 solpart issue?</title><link>http://forums.asp.net/thread/1108050.aspx</link><pubDate>Wed, 09 Nov 2005 21:34:15 GMT</pubDate><guid isPermaLink="false">4c671506-2930-414c-a40b-8bf57ded5924:1108050</guid><dc:creator>vasilis</dc:creator><author>vasilis</author><slash:comments>0</slash:comments><comments>http://forums.asp.net/thread/1108050.aspx</comments><wfw:commentRss>http://forums.asp.net/commentrss.aspx?SectionID=90&amp;PostID=1108050</wfw:commentRss><description>&lt;P&gt;Before I describe the issue I have to say many thanks for all the effort to release this new version.&lt;BR&gt;&lt;BR&gt;I know that Jon Henning has done a great job for many of the new features.&lt;BR&gt;&lt;BR&gt;The issue I have might not be that important, but it does cause a backwards compatibility problem with many existing skins.&lt;BR&gt;&lt;BR&gt;As you can see at &lt;A href="http://test.thinkofdesign.com/"&gt;http://test.thinkofdesign.com/&lt;/A&gt; (clean 3.2 installation) the solpart menu on the left doesn't work properly when it comes to the current tab style. (try to mouse over the menu items and you 'll get it)&lt;BR&gt;&lt;BR&gt;This is the code in my skin.ascx&lt;BR&gt;&lt;BR&gt;&amp;lt;dnn:SOLPARTMENU runat="server" id="dnnSOLPARTMENU" display="vertical" downarrow="breadcrumb.gif" userootbreadcrumbarrow="false" usesubmenubreadcrumbarrow="false" rootmenuitemcssclass="rootmenuitem" rootmenuitemselectedcssclass="rootmenuitemselected" rootmenuitembreadcrumbcssclass="rootmenuitembreadcrumb" submenucssclass="submenu" submenuitemselectedcssclass="submenuitemselected" submenuitembreadcrumbcssclass="submenuitembreadcrumb" /&amp;gt;&lt;BR&gt;&lt;BR&gt;When you are at the home page this is the CSS class for the home menu item in the rendered source:&lt;BR&gt;&lt;BR&gt;class="dnn_dnnsolpartmenu_ctldnnsolpartmenu_spmbar dnn_dnnsolpartmenu_ctldnnsolpartmenu_spmitm MainMenu_MenuBar MainMenu_MenuItem"&lt;BR&gt;&lt;BR&gt;so my custom rootmenuitembreadcrumb CSS class isn't there.&lt;BR&gt;&lt;BR&gt;If you browse a second or third level tab you 'll see that the parent level tab is highlighted as it has to be but it's not the same for the current tab.&lt;BR&gt;&lt;BR&gt;I can find my custom CSS class in the code for the parent root tab:&lt;BR&gt;&lt;BR&gt;class="dnn_dnnsolpartmenu_ctldnnsolpartmenu_spmbar dnn_dnnsolpartmenu_ctldnnsolpartmenu_spmitm MainMenu_MenuBar MainMenu_MenuItem rootmenuitembreadcrumb"&lt;BR&gt;&lt;BR&gt;So I think that the problem is with the CSS class that has to be applied to the current tab... though that's an hypothesis.&lt;BR&gt;&lt;BR&gt;Hope I described it well...&lt;BR&gt;&lt;BR&gt;(...still reading the new &lt;A href="http://www.dotnetnuke.com/Community/Blogs/tabid/825/EntryID/231/Default.aspx"&gt;Navigation Controls document&lt;/A&gt;)&lt;/P&gt;</description></item></channel></rss>