<?xml version="1.0"?><?xml-stylesheet type="text/xsl" href="/rss.xsl"?><rss version="2.0"><channel><title>cssfriendly Work Item Rss Feed</title><link>http://www.codeplex.com/cssfriendly/WorkItem/List.aspx</link><description>cssfriendly Work Item Rss Description</description><item><title>Reopened Issue: TreeViewAdapter renders script code even when disabled [1919]</title><link>http://cssfriendly.codeplex.com/workitem/1919</link><description>If the TreeView adapter is disabled then the view-state methods of the adapter still emit client-side code and this in turn causes Javascript bugs on form post-back.&lt;br /&gt;</description><author>bdemarzo</author><pubDate>Fri, 14 Jun 2013 07:20:16 GMT</pubDate><guid isPermaLink="false">Reopened Issue: TreeViewAdapter renders script code even when disabled [1919] 20130614072016A</guid></item><item><title>Reopened Issue: Embedded Header Styles [2714]</title><link>http://cssfriendly.codeplex.com/workitem/2714</link><description>The ASP.NET Menu control automatically adds several styles to the embedded header style.  For example&amp;#58;&lt;br /&gt;&amp;#160;&lt;br /&gt;   .ctl00_ucMenu_MenuCBM_0 &amp;#123; background-color&amp;#58;white&amp;#59;visibility&amp;#58;hidden&amp;#59;display&amp;#58;none&amp;#59;position&amp;#58;absolute&amp;#59;left&amp;#58;0px&amp;#59;top&amp;#58;0px&amp;#59; &amp;#125;&lt;br /&gt;&amp;#160;&lt;br /&gt;This is unnecessary and probably breaks your ability to fully style your menu with external stylesheets.&lt;br /&gt;&amp;#160;&lt;br /&gt;The culprit is an internal method of the Menu control called EnsureRenderSettings.  It calls this.Page.Header.StyleSheet.CreateStyleRule&amp;#40;&amp;#41; several times, adding style rules to the embedded stylesheet.  EnsureRenderSettings is called at the beginning of the Menu&amp;#39;s OnPreRender method.  Hey, the menu adapter exposes OnPreRender&amp;#33;  That means we&amp;#39;re getting closer to an answer, right&amp;#63;  Right, but if we override OnPreRender and don&amp;#39;t call the base implementation we&amp;#39;ll be missing some important functionality.  This uses internal methods so we cannot emulate it in the menu adapter.  &lt;br /&gt;&amp;#160;&lt;br /&gt;The solution is a bit of a hack, but it&amp;#39;s quick and direct.  We override OnPreRender and after calling the base implementation as normal, we clear the embedded header styles that were just added.  Add this to MenuAdapter.cs&amp;#58;&lt;br /&gt;&amp;#160;&lt;br /&gt;using System.Reflection&amp;#59;&lt;br /&gt;using System.Collections&amp;#59;&lt;br /&gt;&amp;#160;&lt;br /&gt;protected override void OnPreRender&amp;#40;EventArgs e&amp;#41;&lt;br /&gt;&amp;#123;&lt;br /&gt;    base.OnPreRender&amp;#40;e&amp;#41;&amp;#59;&lt;br /&gt;&amp;#160;&lt;br /&gt;    &amp;#47;&amp;#47; Clear the embedded header styles that ASP.NET automatically adds for the menu&lt;br /&gt;    ArrayList selectorStyles &amp;#61; &amp;#40;ArrayList&amp;#41;GetPrivateField&amp;#40;Page.Header.StyleSheet, &amp;#34;_selectorStyles&amp;#34;&amp;#41;&amp;#59;&lt;br /&gt;    selectorStyles.Clear&amp;#40;&amp;#41;&amp;#59;&lt;br /&gt;&amp;#125;&lt;br /&gt;&amp;#160;&lt;br /&gt;&amp;#160;&lt;br /&gt;&amp;#47;&amp;#47;&amp;#47; &amp;#60;summary&amp;#62;&lt;br /&gt;&amp;#47;&amp;#47;&amp;#47; Gets the value of a non-public field of an object instance.  Must have Reflection permission.&lt;br /&gt;&amp;#47;&amp;#47;&amp;#47; &amp;#60;&amp;#47;summary&amp;#62;&lt;br /&gt;&amp;#47;&amp;#47;&amp;#47; &amp;#60;param name&amp;#61;&amp;#34;container&amp;#34;&amp;#62;The object whose field value will be returned.&amp;#60;&amp;#47;param&amp;#62;&lt;br /&gt;&amp;#47;&amp;#47;&amp;#47; &amp;#60;param name&amp;#61;&amp;#34;fieldName&amp;#34;&amp;#62;The name of the data field to get.&amp;#60;&amp;#47;param&amp;#62;&lt;br /&gt;private object GetPrivateField&amp;#40;object container, string fieldName&amp;#41;&lt;br /&gt;&amp;#123;&lt;br /&gt;    Type type &amp;#61; container.GetType&amp;#40;&amp;#41;&amp;#59;&lt;br /&gt;    FieldInfo fieldInfo &amp;#61; type.GetField&amp;#40;fieldName, BindingFlags.NonPublic &amp;#124; BindingFlags.Instance&amp;#41;&amp;#59;&lt;br /&gt;    return fieldInfo.GetValue&amp;#40;container&amp;#41;&amp;#59;&lt;br /&gt;&amp;#125;&lt;br /&gt;&amp;#160;&lt;br /&gt;Notice how it accesses the private member _selectorStyles using a little reflection.  Like I said, a bit of a hack, but it gets rid of those embedded header styles as promised&amp;#33;&lt;br /&gt;&amp;#160;&lt;br /&gt;&amp;#40;P.S. Lutz Roeder&amp;#39;s .NET Reflector was instrumental in allowing me to easily track down the problem.&amp;#41;&lt;br /&gt;</description><author>bdemarzo</author><pubDate>Fri, 14 Jun 2013 07:20:16 GMT</pubDate><guid isPermaLink="false">Reopened Issue: Embedded Header Styles [2714] 20130614072016A</guid></item><item><title>Reopened Issue: No error thrown when adapted control not in a server form [5339]</title><link>http://cssfriendly.codeplex.com/workitem/5339</link><description>AS described at http&amp;#58;&amp;#47;&amp;#47;forums.asp.net&amp;#47;p&amp;#47;1216030&amp;#47;2157420.aspx&amp;#35;2157420&lt;br /&gt;&amp;#160;&lt;br /&gt;Need to add code such as the following&amp;#58;&lt;br /&gt;&amp;#160;&lt;br /&gt;protected override void RenderContents&amp;#40;HtmlTextWriter writer&amp;#41;&lt;br /&gt;&amp;#123;&lt;br /&gt;    TreeView treeView &amp;#61; Control as TreeView&amp;#59;&lt;br /&gt;    if &amp;#40;this.Page &amp;#33;&amp;#61; null&amp;#41;&lt;br /&gt;    &amp;#123;&lt;br /&gt;        this.Page.VerifyRenderingInServerForm&amp;#40;treeView&amp;#41;&amp;#59;&lt;br /&gt;    &amp;#125;&lt;br /&gt;    ...&lt;br /&gt;&amp;#125;&lt;br /&gt;</description><author>bdemarzo</author><pubDate>Fri, 14 Jun 2013 07:20:15 GMT</pubDate><guid isPermaLink="false">Reopened Issue: No error thrown when adapted control not in a server form [5339] 20130614072015A</guid></item><item><title>Reopened Issue: CSS for GridView is broke [6398]</title><link>http://cssfriendly.codeplex.com/workitem/6398</link><description>Someone has modified the GridView so that one can no longer assign custom style classes to table rows. For instance, previously the declarative statements worked&amp;#58;&lt;br /&gt;</description><author>bdemarzo</author><pubDate>Fri, 14 Jun 2013 07:20:15 GMT</pubDate><guid isPermaLink="false">Reopened Issue: CSS for GridView is broke [6398] 20130614072015A</guid></item><item><title>Reopened Issue: CheckboxList RepeatColumns and RepeatDirection - can it be done? [6456]</title><link>http://cssfriendly.codeplex.com/workitem/6456</link><description>Would it be possible for the control adapters to recognize the RepeatColumns and RepeatDirection properties of the CheckboxList control&amp;#63;&lt;br /&gt;</description><author>bdemarzo</author><pubDate>Fri, 14 Jun 2013 07:20:15 GMT</pubDate><guid isPermaLink="false">Reopened Issue: CheckboxList RepeatColumns and RepeatDirection - can it be done? [6456] 20130614072015A</guid></item><item><title>Reopened Issue: Add support for automatic assignment of CSS classes for GridView sortable columns [7717]</title><link>http://cssfriendly.codeplex.com/workitem/7717</link><description>Adding support to the adapters to automatically add classes to TH cells of a GridView&amp;#39;s output that describe the associated column&amp;#39;s sorting ability and current state would allow for the application of sorting specific styling completely from CSS. See http&amp;#58;&amp;#47;&amp;#47;damianpedwards.spaces.live.com&amp;#47;blog&amp;#47;cns&amp;#33;A079DE667E1958B3&amp;#33;562.entry for an example of the described functionality.&lt;br /&gt;</description><author>Borik</author><pubDate>Fri, 14 Jun 2013 07:20:15 GMT</pubDate><guid isPermaLink="false">Reopened Issue: Add support for automatic assignment of CSS classes for GridView sortable columns [7717] 20130614072015A</guid></item><item><title>Closed Issue: TreeViewAdapter renders script code even when disabled [1919]</title><link>http://cssfriendly.codeplex.com/workitem/1919</link><description>If the TreeView adapter is disabled then the view-state methods of the adapter still emit client-side code and this in turn causes Javascript bugs on form post-back.&lt;br /&gt;</description><author>bdemarzo</author><pubDate>Thu, 16 May 2013 10:19:24 GMT</pubDate><guid isPermaLink="false">Closed Issue: TreeViewAdapter renders script code even when disabled [1919] 20130516101924A</guid></item><item><title>Closed Issue: Embedded Header Styles [2714]</title><link>http://cssfriendly.codeplex.com/workitem/2714</link><description>The ASP.NET Menu control automatically adds several styles to the embedded header style.  For example&amp;#58;&lt;br /&gt;&amp;#160;&lt;br /&gt;   .ctl00_ucMenu_MenuCBM_0 &amp;#123; background-color&amp;#58;white&amp;#59;visibility&amp;#58;hidden&amp;#59;display&amp;#58;none&amp;#59;position&amp;#58;absolute&amp;#59;left&amp;#58;0px&amp;#59;top&amp;#58;0px&amp;#59; &amp;#125;&lt;br /&gt;&amp;#160;&lt;br /&gt;This is unnecessary and probably breaks your ability to fully style your menu with external stylesheets.&lt;br /&gt;&amp;#160;&lt;br /&gt;The culprit is an internal method of the Menu control called EnsureRenderSettings.  It calls this.Page.Header.StyleSheet.CreateStyleRule&amp;#40;&amp;#41; several times, adding style rules to the embedded stylesheet.  EnsureRenderSettings is called at the beginning of the Menu&amp;#39;s OnPreRender method.  Hey, the menu adapter exposes OnPreRender&amp;#33;  That means we&amp;#39;re getting closer to an answer, right&amp;#63;  Right, but if we override OnPreRender and don&amp;#39;t call the base implementation we&amp;#39;ll be missing some important functionality.  This uses internal methods so we cannot emulate it in the menu adapter.  &lt;br /&gt;&amp;#160;&lt;br /&gt;The solution is a bit of a hack, but it&amp;#39;s quick and direct.  We override OnPreRender and after calling the base implementation as normal, we clear the embedded header styles that were just added.  Add this to MenuAdapter.cs&amp;#58;&lt;br /&gt;&amp;#160;&lt;br /&gt;using System.Reflection&amp;#59;&lt;br /&gt;using System.Collections&amp;#59;&lt;br /&gt;&amp;#160;&lt;br /&gt;protected override void OnPreRender&amp;#40;EventArgs e&amp;#41;&lt;br /&gt;&amp;#123;&lt;br /&gt;    base.OnPreRender&amp;#40;e&amp;#41;&amp;#59;&lt;br /&gt;&amp;#160;&lt;br /&gt;    &amp;#47;&amp;#47; Clear the embedded header styles that ASP.NET automatically adds for the menu&lt;br /&gt;    ArrayList selectorStyles &amp;#61; &amp;#40;ArrayList&amp;#41;GetPrivateField&amp;#40;Page.Header.StyleSheet, &amp;#34;_selectorStyles&amp;#34;&amp;#41;&amp;#59;&lt;br /&gt;    selectorStyles.Clear&amp;#40;&amp;#41;&amp;#59;&lt;br /&gt;&amp;#125;&lt;br /&gt;&amp;#160;&lt;br /&gt;&amp;#160;&lt;br /&gt;&amp;#47;&amp;#47;&amp;#47; &amp;#60;summary&amp;#62;&lt;br /&gt;&amp;#47;&amp;#47;&amp;#47; Gets the value of a non-public field of an object instance.  Must have Reflection permission.&lt;br /&gt;&amp;#47;&amp;#47;&amp;#47; &amp;#60;&amp;#47;summary&amp;#62;&lt;br /&gt;&amp;#47;&amp;#47;&amp;#47; &amp;#60;param name&amp;#61;&amp;#34;container&amp;#34;&amp;#62;The object whose field value will be returned.&amp;#60;&amp;#47;param&amp;#62;&lt;br /&gt;&amp;#47;&amp;#47;&amp;#47; &amp;#60;param name&amp;#61;&amp;#34;fieldName&amp;#34;&amp;#62;The name of the data field to get.&amp;#60;&amp;#47;param&amp;#62;&lt;br /&gt;private object GetPrivateField&amp;#40;object container, string fieldName&amp;#41;&lt;br /&gt;&amp;#123;&lt;br /&gt;    Type type &amp;#61; container.GetType&amp;#40;&amp;#41;&amp;#59;&lt;br /&gt;    FieldInfo fieldInfo &amp;#61; type.GetField&amp;#40;fieldName, BindingFlags.NonPublic &amp;#124; BindingFlags.Instance&amp;#41;&amp;#59;&lt;br /&gt;    return fieldInfo.GetValue&amp;#40;container&amp;#41;&amp;#59;&lt;br /&gt;&amp;#125;&lt;br /&gt;&amp;#160;&lt;br /&gt;Notice how it accesses the private member _selectorStyles using a little reflection.  Like I said, a bit of a hack, but it gets rid of those embedded header styles as promised&amp;#33;&lt;br /&gt;&amp;#160;&lt;br /&gt;&amp;#40;P.S. Lutz Roeder&amp;#39;s .NET Reflector was instrumental in allowing me to easily track down the problem.&amp;#41;&lt;br /&gt;</description><author>bdemarzo</author><pubDate>Thu, 16 May 2013 10:19:22 GMT</pubDate><guid isPermaLink="false">Closed Issue: Embedded Header Styles [2714] 20130516101922A</guid></item><item><title>Closed Issue: No error thrown when adapted control not in a server form [5339]</title><link>http://cssfriendly.codeplex.com/workitem/5339</link><description>AS described at http&amp;#58;&amp;#47;&amp;#47;forums.asp.net&amp;#47;p&amp;#47;1216030&amp;#47;2157420.aspx&amp;#35;2157420&lt;br /&gt;&amp;#160;&lt;br /&gt;Need to add code such as the following&amp;#58;&lt;br /&gt;&amp;#160;&lt;br /&gt;protected override void RenderContents&amp;#40;HtmlTextWriter writer&amp;#41;&lt;br /&gt;&amp;#123;&lt;br /&gt;    TreeView treeView &amp;#61; Control as TreeView&amp;#59;&lt;br /&gt;    if &amp;#40;this.Page &amp;#33;&amp;#61; null&amp;#41;&lt;br /&gt;    &amp;#123;&lt;br /&gt;        this.Page.VerifyRenderingInServerForm&amp;#40;treeView&amp;#41;&amp;#59;&lt;br /&gt;    &amp;#125;&lt;br /&gt;    ...&lt;br /&gt;&amp;#125;&lt;br /&gt;</description><author>bdemarzo</author><pubDate>Thu, 16 May 2013 10:19:20 GMT</pubDate><guid isPermaLink="false">Closed Issue: No error thrown when adapted control not in a server form [5339] 20130516101920A</guid></item><item><title>Closed Issue: CSS for GridView is broke [6398]</title><link>http://cssfriendly.codeplex.com/workitem/6398</link><description>Someone has modified the GridView so that one can no longer assign custom style classes to table rows. For instance, previously the declarative statements worked&amp;#58;&lt;br /&gt;</description><author>bdemarzo</author><pubDate>Thu, 16 May 2013 10:19:19 GMT</pubDate><guid isPermaLink="false">Closed Issue: CSS for GridView is broke [6398] 20130516101919A</guid></item><item><title>Closed Issue: CheckboxList RepeatColumns and RepeatDirection - can it be done? [6456]</title><link>http://cssfriendly.codeplex.com/workitem/6456</link><description>Would it be possible for the control adapters to recognize the RepeatColumns and RepeatDirection properties of the CheckboxList control&amp;#63;&lt;br /&gt;</description><author>bdemarzo</author><pubDate>Thu, 16 May 2013 10:19:19 GMT</pubDate><guid isPermaLink="false">Closed Issue: CheckboxList RepeatColumns and RepeatDirection - can it be done? [6456] 20130516101919A</guid></item><item><title>Closed Issue: Add support for automatic assignment of CSS classes for GridView sortable columns [7717]</title><link>http://cssfriendly.codeplex.com/workitem/7717</link><description>Adding support to the adapters to automatically add classes to TH cells of a GridView&amp;#39;s output that describe the associated column&amp;#39;s sorting ability and current state would allow for the application of sorting specific styling completely from CSS. See http&amp;#58;&amp;#47;&amp;#47;damianpedwards.spaces.live.com&amp;#47;blog&amp;#47;cns&amp;#33;A079DE667E1958B3&amp;#33;562.entry for an example of the described functionality.&lt;br /&gt;</description><author>Borik</author><pubDate>Thu, 16 May 2013 10:19:17 GMT</pubDate><guid isPermaLink="false">Closed Issue: Add support for automatic assignment of CSS classes for GridView sortable columns [7717] 20130516101917A</guid></item><item><title>Created Issue: CssFriendly and tab key, keyboard arrow key navigation missing [18552]</title><link>http://cssfriendly.codeplex.com/workitem/18552</link><description>I got CssFriendly adapter to work on asp&amp;#58;menu in my project, however, I am having problem with accessing the menu using the tab key from the keyboard.&lt;br /&gt;&lt;br /&gt;Without the adapter, I can tab to the menu items, then use the left&amp;#47;right arrows keys to move around the top level of the menu items, and down arrow key to display the second level of the items &amp;#40;like the hover effect from using the mouse&amp;#41;. With the adapter, I can&amp;#39;t do these functions.&lt;br /&gt;&lt;br /&gt;Do I need to customization &amp;#40;how&amp;#63;&amp;#41;&amp;#63; or am I missing something in styling the menu css control&amp;#63; Please help.&lt;br /&gt;</description><author>jagtapswapnil</author><pubDate>Wed, 29 Aug 2012 05:23:21 GMT</pubDate><guid isPermaLink="false">Created Issue: CssFriendly and tab key, keyboard arrow key navigation missing [18552] 20120829052321A</guid></item><item><title>Created Issue: Please i need  source code of menu [18462]</title><link>http://cssfriendly.codeplex.com/workitem/18462</link><description>Can any one send to me menu  source code  as found in this link because i try more time but not work&lt;br /&gt;http&amp;#58;&amp;#47;&amp;#47;www.asp.net&amp;#47;cssadapters&amp;#47;Menu.aspx&lt;br /&gt;</description><author>ahmedsa</author><pubDate>Mon, 13 Aug 2012 20:40:53 GMT</pubDate><guid isPermaLink="false">Created Issue: Please i need  source code of menu [18462] 20120813084053P</guid></item><item><title>Created Issue: TreeView PathSeparator usage [17628]</title><link>http://cssfriendly.codeplex.com/workitem/17628</link><description>TreeView.PathSeparator attribute is not taken into account.&lt;br /&gt;In all places in TreeViewAdapter.cs file where is &lt;br /&gt;Replace&amp;#40;&amp;#34;&amp;#92;&amp;#92;&amp;#34;, &amp;#34;&amp;#47;&amp;#34;&amp;#41;&lt;br /&gt;should be &lt;br /&gt;Replace&amp;#40;&amp;#34;&amp;#92;&amp;#92;&amp;#34;, treeView.PathSeparator.ToString&amp;#40;&amp;#41;&amp;#41;&lt;br /&gt;instead.&lt;br /&gt;</description><author>okli</author><pubDate>Sat, 17 Mar 2012 22:59:41 GMT</pubDate><guid isPermaLink="false">Created Issue: TreeView PathSeparator usage [17628] 20120317105941P</guid></item><item><title>Commented Issue: CreateUserWizardAdapter does not render CustomNavigationTemplate [6026]</title><link>http://cssfriendly.codeplex.com/workitem/6026</link><description>Sample Code&lt;br /&gt;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&lt;br /&gt;&amp;#60;asp&amp;#58;CreateUserWizardStep runat&amp;#61;&amp;#34;server&amp;#34;&amp;#62;&lt;br /&gt;&amp;#9;&amp;#60;ContentTemplate&amp;#62;&lt;br /&gt;&amp;#9;&amp;#9;&amp;#60;asp&amp;#58;TextBox runat&amp;#61;&amp;#34;server&amp;#34; ID&amp;#61;&amp;#34;UserName&amp;#34;&amp;#62;&amp;#60;&amp;#47;asp&amp;#58;TextBox&amp;#62;&lt;br /&gt;&amp;#9;&amp;#9;&amp;#60;asp&amp;#58;TextBox runat&amp;#61;&amp;#34;server&amp;#34; TextMode&amp;#61;&amp;#34;Password&amp;#34; ID&amp;#61;&amp;#34;Password&amp;#34;&amp;#62;&amp;#60;&amp;#47;asp&amp;#58;TextBox&amp;#62;&lt;br /&gt;&amp;#9;&amp;#9;&amp;#60;asp&amp;#58;TextBox runat&amp;#61;&amp;#34;server&amp;#34; TextMode&amp;#61;&amp;#34;Password&amp;#34; ID&amp;#61;&amp;#34;ConfirmPassword&amp;#34;&amp;#62;&amp;#60;&amp;#47;asp&amp;#58;TextBox&amp;#62;&lt;br /&gt;&amp;#9;&amp;#9;&amp;#60;asp&amp;#58;TextBox runat&amp;#61;&amp;#34;server&amp;#34; ID&amp;#61;&amp;#34;Email&amp;#34;&amp;#62;&amp;#60;&amp;#47;asp&amp;#58;TextBox&amp;#62;&lt;br /&gt;&amp;#9;&amp;#9;&amp;#60;asp&amp;#58;TextBox runat&amp;#61;&amp;#34;server&amp;#34; ID&amp;#61;&amp;#34;Question&amp;#34;&amp;#62;&amp;#60;&amp;#47;asp&amp;#58;TextBox&amp;#62;&lt;br /&gt;&amp;#9;&amp;#9;&amp;#60;asp&amp;#58;TextBox runat&amp;#61;&amp;#34;server&amp;#34; ID&amp;#61;&amp;#34;Answer&amp;#34;&amp;#62;&amp;#60;&amp;#47;asp&amp;#58;TextBox&amp;#62;&lt;br /&gt;&amp;#9;&amp;#9;&amp;#60;asp&amp;#58;Literal runat&amp;#61;&amp;#34;server&amp;#34; EnableViewState&amp;#61;&amp;#34;False&amp;#34; ID&amp;#61;&amp;#34;FailureText&amp;#34;&amp;#62;&lt;br /&gt;&amp;#9;&amp;#9;&amp;#60;&amp;#47;asp&amp;#58;Literal&amp;#62;&lt;br /&gt;&amp;#9;&amp;#60;&amp;#47;ContentTemplate&amp;#62;&lt;br /&gt;&amp;#9;&amp;#60;CustomNavigationTemplate&amp;#62;&lt;br /&gt;&amp;#9;&amp;#9;&amp;#60;asp&amp;#58;Button ID&amp;#61;&amp;#34;MyCreateButton&amp;#34; runat&amp;#61;&amp;#34;server&amp;#34; CommandName&amp;#61;&amp;#34;CreateUser&amp;#34; CausesValidation&amp;#61;&amp;#34;true&amp;#34; Text&amp;#61;&amp;#34;Create&amp;#34; &amp;#47;&amp;#62;&lt;br /&gt;&amp;#9;&amp;#60;&amp;#47;CustomNavigationTemplate&amp;#62;&lt;br /&gt;&amp;#60;&amp;#47;asp&amp;#58;CreateUserWizardStep&amp;#62;&lt;br /&gt;&lt;br /&gt;Desciption&lt;br /&gt;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&lt;br /&gt;MyCreateButton is not rendered.&lt;br /&gt;Comments: ** Comment from web user: sukumarthota ** &lt;p&gt;You would need to comment out the following in CssFriendlyAdapters.Browser&amp;#58;&lt;br /&gt;&amp;#60;adapter controlType&amp;#61;&amp;#34;System.Web.UI.WebControls.CreateUserWizard&amp;#34;&lt;br /&gt;               adapterType&amp;#61;&amp;#34;CSSFriendly.CreateUserWizardAdapter&amp;#34; &amp;#47;&amp;#62;&lt;br /&gt;That makes it render the default asp.net control.&lt;/p&gt;</description><author>sukumarthota</author><pubDate>Fri, 01 Apr 2011 19:06:44 GMT</pubDate><guid isPermaLink="false">Commented Issue: CreateUserWizardAdapter does not render CustomNavigationTemplate [6026] 20110401070644P</guid></item><item><title>Created Issue: SQLConnection error when referencing cssfriendly [14618]</title><link>http://cssfriendly.codeplex.com/workitem/14618</link><description>I just downloaded the latest version of css friendly&amp;#58;&lt;br /&gt;http&amp;#58;&amp;#47;&amp;#47;cssfriendly.codeplex.com&amp;#47;releases&amp;#47;view&amp;#47;2159&amp;#35;DownloadId&amp;#61;7905&lt;br /&gt;http&amp;#58;&amp;#47;&amp;#47;cssfriendly.codeplex.com&amp;#47;releases&amp;#47;view&amp;#47;2159&amp;#35;DownloadId&amp;#61;7952&lt;br /&gt;&lt;br /&gt;Without referencing the dll and the browser &amp;#40;which goes in APp_browsers&amp;#41; the site works fine.&lt;br /&gt;If I reference the dll i have this weird error&amp;#58;&amp;#34; Error mientras se establec&amp;#237;a la conexi&amp;#243;n con el servidor. Al conectar con SQL Server 2005, el error se puede producir porque la configuraci&amp;#243;n predeterminada de SQL Server no admite conexiones remotas. &amp;#40;provider&amp;#58; Proveedor de memoria compartida, error&amp;#58; 40 - No se pudo abrir una conexi&amp;#243;n con SQL Server&amp;#41; &amp;#34;&lt;br /&gt;&amp;#40;I&amp;#39;m sorry it&amp;#39;s in spanish&amp;#41;, but nowhere in the page i execute anything of sql. Also the stack trace shows something like&amp;#58; &lt;br /&gt;&amp;#91;SqlException &amp;#40;0x80131904&amp;#41;&amp;#58; Error mientras se establec&amp;#237;a la conexi&amp;#243;n con el servidor. Al conectar con SQL Server 2005, el error se puede producir porque la configuraci&amp;#243;n predeterminada de SQL Server no admite conexiones remotas. &amp;#40;provider&amp;#58; Proveedor de memoria compartida, error&amp;#58; 40 - No se pudo abrir una conexi&amp;#243;n con SQL Server&amp;#41;&amp;#93;&lt;br /&gt;   System.Data.SqlClient.SqlInternalConnection.OnError&amp;#40;SqlException exception, Boolean breakConnection&amp;#41; &amp;#43;4846887&lt;br /&gt;   System.Data.SqlClient.TdsParser.ThrowExceptionAndWarning&amp;#40;TdsParserStateObject stateObj&amp;#41; &amp;#43;194&lt;br /&gt;   System.Data.SqlClient.TdsParser.Connect&amp;#40;ServerInfo serverInfo, SqlInternalConnectionTds connHandler, Boolean ignoreSniOpenTimeout, Int64 timerExpire, Boolean encrypt, Boolean trustServerCert, Boolean integratedSecurity, SqlConnection owningObject&amp;#41; &amp;#43;4860189&lt;br /&gt;   System.Data.SqlClient.SqlInternalConnectionTds.AttemptOneLogin&amp;#40;ServerInfo serverInfo, String newPassword, Boolean ignoreSniOpenTimeout, Int64 timerExpire, SqlConnection owningObject&amp;#41; &amp;#43;90&lt;br /&gt;   System.Data.SqlClient.SqlInternalConnectionTds.LoginNoFailover&amp;#40;String host, String newPassword, Boolean redirectedUserInstance, SqlConnection owningObject, SqlConnectionString connectionOptions, Int64 timerStart&amp;#41; &amp;#43;376&lt;br /&gt;   System.Data.SqlClient.SqlInternalConnectionTds.OpenLoginEnlist&amp;#40;SqlConnection owningObject, SqlConnectionString connectionOptions, String newPassword, Boolean redirectedUserInstance&amp;#41; &amp;#43;221&lt;br /&gt;   System.Data.SqlClient.SqlInternalConnectionTds..ctor&amp;#40;DbConnectionPoolIdentity identity, SqlConnectionString connectionOptions, Object providerInfo, String newPassword, SqlConnection owningObject, Boolean redirectedUserInstance&amp;#41; &amp;#43;189&lt;br /&gt;   System.Data.SqlClient.SqlConnectionFactory.CreateConnection&amp;#40;DbConnectionOptions options, Object poolGroupProviderInfo, DbConnectionPool pool, DbConnection owningConnection&amp;#41; &amp;#43;4861315&lt;br /&gt;   System.Data.ProviderBase.DbConnectionFactory.CreateNonPooledConnection&amp;#40;DbConnection owningConnection, DbConnectionPoolGroup poolGroup&amp;#41; &amp;#43;29&lt;br /&gt;   System.Data.ProviderBase.DbConnectionFactory.GetConnection&amp;#40;DbConnection owningConnection&amp;#41; &amp;#43;4863644&lt;br /&gt;   System.Data.ProviderBase.DbConnectionClosed.OpenConnection&amp;#40;DbConnection outerConnection, DbConnectionFactory connectionFactory&amp;#41; &amp;#43;117&lt;br /&gt;   System.Data.SqlClient.SqlConnection.Open&amp;#40;&amp;#41; &amp;#43;122&lt;br /&gt;   System.Web.Management.SqlServices.GetSqlConnection&amp;#40;String server, String user, String password, Boolean trusted, String connectionString&amp;#41; &amp;#43;82&lt;br /&gt;&lt;br /&gt;&amp;#91;HttpException &amp;#40;0x80004005&amp;#41;&amp;#58; No se puede conectar con la base de datos de servidor SQL Server.&amp;#93;&lt;br /&gt;   System.Web.Management.SqlServices.GetSqlConnection&amp;#40;String server, String user, String password, Boolean trusted, String connectionString&amp;#41; &amp;#43;137&lt;br /&gt;   System.Web.Management.SqlServices.SetupApplicationServices&amp;#40;String server, String user, String password, Boolean trusted, String connectionString, String database, String dbFileName, SqlFeatures features, Boolean install&amp;#41; &amp;#43;94&lt;br /&gt;   System.Web.Management.SqlServices.Install&amp;#40;String database, String dbFileName, String connectionString&amp;#41; &amp;#43;25&lt;br /&gt;   System.Web.DataAccess.SqlConnectionHelper.CreateMdfFile&amp;#40;String fullFileName, String dataDir, String connectionString&amp;#41; &amp;#43;395&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;It seems that is trying to create a mdf file...&lt;br /&gt;Any help with this&amp;#63;&lt;br /&gt;</description><author>ironicnet</author><pubDate>Sat, 06 Nov 2010 22:56:30 GMT</pubDate><guid isPermaLink="false">Created Issue: SQLConnection error when referencing cssfriendly [14618] 20101106105630P</guid></item><item><title>Created Issue: WebControlAdapterExtender doesn't encode attributes [14040]</title><link>http://cssfriendly.codeplex.com/workitem/14040</link><description>It looks like the writetextbox method &amp;#40;among others&amp;#41; isn&amp;#39;t encoding the value attribute.  Any reason it shoud not be&amp;#63;&lt;br /&gt;</description><author>christopheratmorr</author><pubDate>Wed, 18 Aug 2010 15:36:27 GMT</pubDate><guid isPermaLink="false">Created Issue: WebControlAdapterExtender doesn't encode attributes [14040] 20100818033627P</guid></item><item><title>Created Issue: GridView Adapter prevent Pager to show in Dynamic Data. [13629]</title><link>http://cssfriendly.codeplex.com/workitem/13629</link><description>In a standard Dynamic data page &amp;#40;no customization&amp;#41; the pager of the gridview is not rendered if CSS Adapter is enabled for GridView control.&lt;br /&gt;&lt;br /&gt;A workaround I found is to create a Custom Control&amp;#58;&lt;br /&gt;&amp;#60;code&amp;#62;&lt;br /&gt;namespace Infrastructure.CustomControls&lt;br /&gt;&amp;#123;&lt;br /&gt;    public class CssGridView &amp;#58; GridView&lt;br /&gt;    &amp;#123;&lt;br /&gt;        protected override void Render&amp;#40;System.Web.UI.HtmlTextWriter writer&amp;#41; &amp;#123; base.Render&amp;#40;writer&amp;#41;&amp;#59;  &amp;#125;&lt;br /&gt;    &amp;#125;&lt;br /&gt;&amp;#125;&lt;br /&gt;&amp;#60;&amp;#47;code&amp;#62;&lt;br /&gt;&lt;br /&gt;then associate che Adapter to that control&amp;#58;&lt;br /&gt;&amp;#60;code&amp;#62;&lt;br /&gt;&amp;#60;adapter controlType&amp;#61;&amp;#34;Infrastructure.CustomControls.CssGridView&amp;#34;  adapterType&amp;#61;&amp;#34;CSSFriendly.GridViewAdapter&amp;#34; &amp;#47;&amp;#62;&lt;br /&gt;&amp;#60;&amp;#47;code&amp;#62;&lt;br /&gt;&lt;br /&gt;And then register and use it in the pages I want a CSS Friendly GridView.&lt;br /&gt;&amp;#60;code&amp;#62;&lt;br /&gt;&amp;#60;&amp;#37;&amp;#64; Register Assembly&amp;#61;&amp;#34;Infrastructure&amp;#34; Namespace&amp;#61;&amp;#34;CustomControls&amp;#34; TagPrefix&amp;#61;&amp;#34;cc1&amp;#34; &amp;#37;&amp;#62;&lt;br /&gt;&amp;#91;...&amp;#93;&lt;br /&gt;&amp;#60;cc1&amp;#58;CssGridView ....&amp;#62;&amp;#47;cc1&amp;#58;CssGridView&amp;#62;&lt;br /&gt;&amp;#60;&amp;#47;code&amp;#62;&lt;br /&gt;&lt;br /&gt;The dynamic Data ones will then use te standard GridView, not having the pager issue.&lt;br /&gt;</description><author>fgpx78</author><pubDate>Tue, 29 Jun 2010 09:25:56 GMT</pubDate><guid isPermaLink="false">Created Issue: GridView Adapter prevent Pager to show in Dynamic Data. [13629] 20100629092556A</guid></item><item><title>Commented Issue: CreateUserWizard with template causes empty property values in events [7664]</title><link>http://cssfriendly.codeplex.com/WorkItem/View.aspx?WorkItemId=7664</link><description>With the 16291 version, I find that when using a CreateUserWizard with a template, many important properties are empty in events like CreatingUser or CreatedUser.  The main ones I noticed are UserName, Password &amp;#38; Email. &lt;br /&gt;&lt;br /&gt;Inspecting at run-time showed that the non-public values are OK, and indeed the user still gets created in the membership provider.&lt;br /&gt;&lt;br /&gt;I saw other similar reports of problems with templates and although none precisely matched, this is in a similar vein.&lt;br /&gt;Comments: ** Comment from web user: tmecklem ** &lt;p&gt;This is a bigger issue when you set LoginCreatedUser to true, since the UserName and Password that are passed in to the ValidateUser method during attempted login behind the scenes are both blank. This causes ValidateUser to fail and the user is not logged in and they cannot continue on to secure areas automatically.&lt;/p&gt;</description><author>tmecklem</author><pubDate>Fri, 23 Apr 2010 15:55:39 GMT</pubDate><guid isPermaLink="false">Commented Issue: CreateUserWizard with template causes empty property values in events [7664] 20100423035539P</guid></item></channel></rss>