<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments for Brant Burnett&#039;s Development Blog</title>
	<atom:link href="http://btburnett.com/comments/feed" rel="self" type="application/rss+xml" />
	<link>http://btburnett.com</link>
	<description></description>
	<lastBuildDate>Fri, 24 Feb 2012 06:41:16 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
	<item>
		<title>Comment on jQuery UI Spinner Widget 1.10 by deeps</title>
		<link>http://btburnett.com/2009/05/jquery-ui-spinner-widget-110.html/comment-page-1#comment-57</link>
		<dc:creator>deeps</dc:creator>
		<pubDate>Fri, 24 Feb 2012 06:41:16 +0000</pubDate>
		<guid isPermaLink="false">http://btburnett.com/?p=98#comment-57</guid>
		<description>Hi,
In if we try the spinner example in chrome, some spinners  (for eg: the one with maxlength example)are having two set of arrows, one inside the text box and one outside.Can we solve this issue?

Thanks,
Deeps.</description>
		<content:encoded><![CDATA[<p>Hi,<br />
In if we try the spinner example in chrome, some spinners  (for eg: the one with maxlength example)are having two set of arrows, one inside the text box and one outside.Can we solve this issue?</p>
<p>Thanks,<br />
Deeps.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Detecting Original HTML5 Input Types On Unsupported Browsers by Get the original HTML5 input @type (jQuery plugin) &#171; Rachael L. Moore</title>
		<link>http://btburnett.com/2010/04/detecting-html5-input-types-on-unsupported-browsers.html/comment-page-1#comment-56</link>
		<dc:creator>Get the original HTML5 input @type (jQuery plugin) &#171; Rachael L. Moore</dc:creator>
		<pubDate>Mon, 12 Sep 2011 19:57:16 +0000</pubDate>
		<guid isPermaLink="false">http://btburnett.com/?p=132#comment-56</guid>
		<description>[...] search landed me on Brant Burnett&#8217;s site, where he had written a jQuery plugin to add an :inputtype selector. Thank you very much, Brant!  I wanted something slightly different, though, so I modified [...]</description>
		<content:encoded><![CDATA[<p>[...] search landed me on Brant Burnett&#8217;s site, where he had written a jQuery plugin to add an :inputtype selector. Thank you very much, Brant!  I wanted something slightly different, though, so I modified [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Correcting MVC 3 EditorFor Template Field Names When Using Collections by shawninc</title>
		<link>http://btburnett.com/2011/03/correcting-mvc-3-editorfor-template-field-names-when-using-collections.html/comment-page-1#comment-53</link>
		<dc:creator>shawninc</dc:creator>
		<pubDate>Tue, 02 Aug 2011 17:12:07 +0000</pubDate>
		<guid isPermaLink="false">http://btburnett.com/?p=163#comment-53</guid>
		<description>Cutting and pasting that does not work in MVC3. To get the extension to work, I had to create a class file:
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.Mvc;

namespace incMvcSite.Classes {
    public static class HtmlPrefixScopeExtensions {
        public static IDisposable BeginHtmlFieldPrefixScope(this HtmlHelper html, string htmlFieldPrefix) {
            return new HtmlFieldPrefixScope(html.ViewData.TemplateInfo, htmlFieldPrefix);
        }

        private class HtmlFieldPrefixScope : IDisposable {
            private readonly TemplateInfo templateInfo;
            private readonly string previousHtmlFieldPrefix;

            public HtmlFieldPrefixScope(TemplateInfo templateInfo, string htmlFieldPrefix) {
                this.templateInfo = templateInfo;

                previousHtmlFieldPrefix = templateInfo.HtmlFieldPrefix;
                templateInfo.HtmlFieldPrefix = htmlFieldPrefix;
            }

            public void Dispose() {
                templateInfo.HtmlFieldPrefix = previousHtmlFieldPrefix;
            }
        }
    }
}
In the Razor (.cshtml) file, I added the following:
@using incMvcSite.Classes
@using(Html.BeginHtmlFieldPrefixScope(&quot;Permission&quot;)) {
    
        Permission

        // The Html.EditorFor&#039;s would go here...
    
}
Notice the using to bring me extension class into scope. That allows the second using line to work.
Now the problem is that when posting back, the object is not updated. In my controller, I used a second parameter to specify my prefix:
TryUpdateModel(modelUser.Permission, &quot;Permission&quot;);
This added the prefix to all field in the HTML, and the TryUpdateModel loaded the object with prefixed control names. Now you can properly namespace your controls for embedded edit lists, and for partial views of models with the same property names.

Shawn Zernik
Internetwork Consulting</description>
		<content:encoded><![CDATA[<p>Cutting and pasting that does not work in MVC3. To get the extension to work, I had to create a class file:<br />
using System;<br />
using System.Collections.Generic;<br />
using System.Linq;<br />
using System.Web;<br />
using System.Web.Mvc;</p>
<p>namespace incMvcSite.Classes {<br />
    public static class HtmlPrefixScopeExtensions {<br />
        public static IDisposable BeginHtmlFieldPrefixScope(this HtmlHelper html, string htmlFieldPrefix) {<br />
            return new HtmlFieldPrefixScope(html.ViewData.TemplateInfo, htmlFieldPrefix);<br />
        }</p>
<p>        private class HtmlFieldPrefixScope : IDisposable {<br />
            private readonly TemplateInfo templateInfo;<br />
            private readonly string previousHtmlFieldPrefix;</p>
<p>            public HtmlFieldPrefixScope(TemplateInfo templateInfo, string htmlFieldPrefix) {<br />
                this.templateInfo = templateInfo;</p>
<p>                previousHtmlFieldPrefix = templateInfo.HtmlFieldPrefix;<br />
                templateInfo.HtmlFieldPrefix = htmlFieldPrefix;<br />
            }</p>
<p>            public void Dispose() {<br />
                templateInfo.HtmlFieldPrefix = previousHtmlFieldPrefix;<br />
            }<br />
        }<br />
    }<br />
}<br />
In the Razor (.cshtml) file, I added the following:<br />
@using incMvcSite.Classes<br />
@using(Html.BeginHtmlFieldPrefixScope(&#8220;Permission&#8221;)) {</p>
<p>        Permission</p>
<p>        // The Html.EditorFor&#8217;s would go here&#8230;</p>
<p>}<br />
Notice the using to bring me extension class into scope. That allows the second using line to work.<br />
Now the problem is that when posting back, the object is not updated. In my controller, I used a second parameter to specify my prefix:<br />
TryUpdateModel(modelUser.Permission, &#8220;Permission&#8221;);<br />
This added the prefix to all field in the HTML, and the TryUpdateModel loaded the object with prefixed control names. Now you can properly namespace your controls for embedded edit lists, and for partial views of models with the same property names.</p>
<p>Shawn Zernik<br />
Internetwork Consulting</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on jQuery UI spinner widget by Brant Burnett</title>
		<link>http://btburnett.com/2009/05/jquery-ui-spinner-widget.html/comment-page-1#comment-40</link>
		<dc:creator>Brant Burnett</dc:creator>
		<pubDate>Mon, 25 Apr 2011 15:54:10 +0000</pubDate>
		<guid isPermaLink="false">http://btburnett.com/?p=71#comment-40</guid>
		<description>You&#039;re correct, Opera has some issues with rendering.  However, I&#039;m not really supporting this widget anymore.  For my personal work, I&#039;ve been using the partially complete spinner from the jQuery UI repository.  It&#039;s going to be included in the jQuery UI 1.9 release.</description>
		<content:encoded><![CDATA[<p>You&#8217;re correct, Opera has some issues with rendering.  However, I&#8217;m not really supporting this widget anymore.  For my personal work, I&#8217;ve been using the partially complete spinner from the jQuery UI repository.  It&#8217;s going to be included in the jQuery UI 1.9 release.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on jQuery UI spinner widget by antoyo</title>
		<link>http://btburnett.com/2009/05/jquery-ui-spinner-widget.html/comment-page-1#comment-39</link>
		<dc:creator>antoyo</dc:creator>
		<pubDate>Mon, 25 Apr 2011 15:45:50 +0000</pubDate>
		<guid isPermaLink="false">http://btburnett.com/?p=71#comment-39</guid>
		<description>Hello,
there is a bug in your Spinner widget on the Opera Web Browser :
http://img822.imageshack.us/img822/7007/bugspinner.png
Sometimes, the arrow buttons are not at the right place.
Do you know why ?
Thanks to fix this problem.</description>
		<content:encoded><![CDATA[<p>Hello,<br />
there is a bug in your Spinner widget on the Opera Web Browser :<br />
<a href="http://img822.imageshack.us/img822/7007/bugspinner.png" rel="nofollow">http://img822.imageshack.us/img822/7007/bugspinner.png</a><br />
Sometimes, the arrow buttons are not at the right place.<br />
Do you know why ?<br />
Thanks to fix this problem.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Detecting Original HTML5 Input Types On Unsupported Browsers by Original HTML5 input type value &#8211; jQuery plugin &#187; Rachael L. Moore</title>
		<link>http://btburnett.com/2010/04/detecting-html5-input-types-on-unsupported-browsers.html/comment-page-1#comment-38</link>
		<dc:creator>Original HTML5 input type value &#8211; jQuery plugin &#187; Rachael L. Moore</dc:creator>
		<pubDate>Thu, 16 Dec 2010 23:48:06 +0000</pubDate>
		<guid isPermaLink="false">http://btburnett.com/?p=132#comment-38</guid>
		<description>[...] search landed me on Brant Burnett&#8217;s site, where he had written a jQuery plugin to add an :inputtype selector. Neat, but a few moments of experimentation led me to feel I wanted something slightly [...]</description>
		<content:encoded><![CDATA[<p>[...] search landed me on Brant Burnett&#8217;s site, where he had written a jQuery plugin to add an :inputtype selector. Neat, but a few moments of experimentation led me to feel I wanted something slightly [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on LABjs.Net Release Candidate 1.0rc4 by Simplify Asynchronous Javascript Loading In ASP.Net Using LABjs &#124; Brant Burnett&#39;s Development Blog</title>
		<link>http://btburnett.com/2010/02/labjs-net-release-candidate-1-0rc4.html/comment-page-1#comment-24</link>
		<dc:creator>Simplify Asynchronous Javascript Loading In ASP.Net Using LABjs &#124; Brant Burnett&#39;s Development Blog</dc:creator>
		<pubDate>Mon, 08 Feb 2010 15:19:40 +0000</pubDate>
		<guid isPermaLink="false">http://btburnett.com/?p=109#comment-24</guid>
		<description>[...] Update 2/8/2010: Updated to version 1.0rc4 [...]</description>
		<content:encoded><![CDATA[<p>[...] Update 2/8/2010: Updated to version 1.0rc4 [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Create A Self-Signed SSL Certificate In .NET by jholovacs</title>
		<link>http://btburnett.com/2009/05/create-a-self-signed-ssl-certificate-in-net.html/comment-page-1#comment-21</link>
		<dc:creator>jholovacs</dc:creator>
		<pubDate>Sun, 19 Jul 2009 22:38:11 +0000</pubDate>
		<guid isPermaLink="false">http://btburnett.com/?p=95#comment-21</guid>
		<description>Fantastic work, thanks.  This really gave me a starting point to work from.</description>
		<content:encoded><![CDATA[<p>Fantastic work, thanks.  This really gave me a starting point to work from.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Update To Partial Authentication System by Secure Persistent ASP.NET Forms Authentication &#124; Brant Burnett&#8217;s .NET Blog</title>
		<link>http://btburnett.com/2008/08/update-to-partial-authentication-system-2.html/comment-page-1#comment-19</link>
		<dc:creator>Secure Persistent ASP.NET Forms Authentication &#124; Brant Burnett&#8217;s .NET Blog</dc:creator>
		<pubDate>Sat, 02 May 2009 13:52:31 +0000</pubDate>
		<guid isPermaLink="false">http://www.btburnett.com/?p=19#comment-19</guid>
		<description>[...] Please note that this library is designed for .NET 3.5 and Visual Studio 2008, though it should be easily convertible back to .NET 2.0 if you change the project settings. UPDATE: Please see updated version here [...]</description>
		<content:encoded><![CDATA[<p>[...] Please note that this library is designed for .NET 3.5 and Visual Studio 2008, though it should be easily convertible back to .NET 2.0 if you change the project settings. UPDATE: Please see updated version here [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Update To Partial Authentication System by Update To Partial Authentication System &#124; Brant Burnett&#8217;s .NET Blog</title>
		<link>http://btburnett.com/2008/08/update-to-partial-authentication-system-2.html/comment-page-1#comment-18</link>
		<dc:creator>Update To Partial Authentication System &#124; Brant Burnett&#8217;s .NET Blog</dc:creator>
		<pubDate>Sat, 02 May 2009 13:51:16 +0000</pubDate>
		<guid isPermaLink="false">http://www.btburnett.com/?p=19#comment-18</guid>
		<description>[...] I&#8217;ve posted new source and binaries for download.  UPDATE: Please see updated version here [...]</description>
		<content:encoded><![CDATA[<p>[...] I&#8217;ve posted new source and binaries for download.  UPDATE: Please see updated version here [...]</p>
]]></content:encoded>
	</item>
</channel>
</rss>

