<?xml version="1.0" encoding="utf-8"?><feed xmlns="http://www.w3.org/2005/Atom" ><generator uri="https://jekyllrb.com/" version="3.9.3">Jekyll</generator><link href="https://jonegerton.com/feed/dev.xml" rel="self" type="application/atom+xml" /><link href="https://jonegerton.com/" rel="alternate" type="text/html" /><updated>2023-07-18T14:35:18+00:00</updated><id>https://jonegerton.com/feed/dev.xml</id><title type="html">Jon Egerton | Dev</title><subtitle>Notes on coding and tinkering.</subtitle><entry><title type="html">Overriding Modernizr</title><link href="https://jonegerton.com/web/overriding-modernizr/" rel="alternate" type="text/html" title="Overriding Modernizr" /><published>2016-03-16T08:53:00+00:00</published><updated>2016-03-16T08:53:00+00:00</updated><id>https://jonegerton.com/web/overriding-modernizr</id><author><name></name></author><category term="CSS" /><category term="Javascript" /><category term="Modernizr" /><summary type="html">Modernizr is a great tool for browser feature detection, but there are times when it’s useful to override Modernizr’s detection and force the configuration of features that are available, both on the Javascript object and also the CSS marker classes. An example of this is when using Chrome Dev Tools to write fallback functionality for older mobile devices - Windows Mobile 7.5 and a Galaxy Ace with Android 2.3 have been problems for me lately.</summary></entry><entry><title type="html">A TinyIoC Bootstrapper</title><link href="https://jonegerton.com/dotnet/a-tinyioc-bootstrapper/" rel="alternate" type="text/html" title="A TinyIoC Bootstrapper" /><published>2015-02-18T15:39:00+00:00</published><updated>2015-02-18T15:39:00+00:00</updated><id>https://jonegerton.com/dotnet/a-tinyioc-bootstrapper</id><author><name></name></author><category term=".Net" /><category term="C#" /><summary type="html">I really like the TinyIoC Inversion of Control Container. It’s nice and straight forward to use, it’s easily portable, and the auto registration feature does 99% of your work for you. In recent projects it has been an ideal choice, either because of the size of the project, or to introduce the concepts of DI to teams that weren’t already familiar with it.</summary></entry><entry><title type="html">SignalR: The ConnectionId is in the incorrect format – an alternative cause</title><link href="https://jonegerton.com/dotnet/signalr-the-connectionid-is-in-the-incorrect-format-an-alternative-cause/" rel="alternate" type="text/html" title="SignalR: The ConnectionId is in the incorrect format – an alternative cause" /><published>2014-08-12T11:39:00+00:00</published><updated>2014-08-12T11:39:00+00:00</updated><id>https://jonegerton.com/dotnet/signalr-the-connectionid-is-in-the-incorrect-format</id><author><name></name></author><category term="ASP.Net" /><category term="SignalR" /><summary type="html">Recently, on an application using SignalR, we found that we were getting many exceptions (sometimes 10 per second) from the SignalR hubs in the site:</summary></entry><entry><title type="html">ASP.Net Webforms - Dynamic UpdatePanels and UserControls issue</title><link href="https://jonegerton.com/dotnet/asp-net-webforms-dynamic-updatepanels-and-usercontrols-issue/" rel="alternate" type="text/html" title="ASP.Net Webforms - Dynamic UpdatePanels and UserControls issue" /><published>2013-12-09T14:12:00+00:00</published><updated>2013-12-09T14:12:00+00:00</updated><id>https://jonegerton.com/dotnet/aspnet-webforms-dynamic-updatepanels-and-usercontrols</id><author><name></name></author><category term="ASP.Net" /><category term="WebForms" /><summary type="html">I have come across an interesting issues in ASP.Net WebForms when migrating a project from 3.5 up to 4.5.</summary></entry><entry><title type="html">Techniques for cleaner dynamic SQL generation</title><link href="https://jonegerton.com/sql/techniques-for-cleaner-dynamic-sql/" rel="alternate" type="text/html" title="Techniques for cleaner dynamic SQL generation" /><published>2013-10-25T09:55:00+00:00</published><updated>2013-10-25T09:55:00+00:00</updated><id>https://jonegerton.com/sql/cleaner-sql-generation</id><author><name></name></author><category term="MS" /><category term="SQL" /><category term="Server," /><category term="T-SQL" /><summary type="html">Very often when working in databases we have to resort to dynamic SQL generation to solve a problem. For example, common instances of this would be when performing an action across a number of different tables, or performing a PIVOT on a data set where the set of pivot results is not pre-determined. This latter example is one which I’ll take through this walk through.</summary></entry><entry><title type="html">AutoMapper and EntityFramework Proxies - a workaround</title><link href="https://jonegerton.com/dotnet/automapper-and-entityframework-proxies-a-workaround/" rel="alternate" type="text/html" title="AutoMapper and EntityFramework Proxies - a workaround" /><published>2013-02-21T16:43:00+00:00</published><updated>2013-02-21T16:43:00+00:00</updated><id>https://jonegerton.com/dotnet/automapper-and-entityframework-proxies-a-workaround</id><author><name></name></author><category term="C#" /><category term="MVC" /><summary type="html">This is a quick workaround for an issue I came across when working with AutoMapper on EF. Its one of those blog posts that’s as much a reminder for the writer as anything else.</summary></entry><entry><title type="html">DropDownList Helper For</title><link href="https://jonegerton.com/dotnet/dropdownlist-helper-for-enums/" rel="alternate" type="text/html" title="DropDownList Helper For" /><published>2012-12-18T15:08:00+00:00</published><updated>2012-12-18T15:08:00+00:00</updated><id>https://jonegerton.com/dotnet/dropdownlist-helper-for</id><author><name></name></author><category term="C#" /><category term="MVC" /><summary type="html">Its useful to be able to have a helper that converts a Enum typed property from an MVC Model directly into a drop down list without any messing about creating lists of possible values etc.</summary></entry><entry><title type="html">EditorFor and Interfaces Pt2 - Binding</title><link href="https://jonegerton.com/dotnet/editorfor-and-interfaces-pt2-binding/" rel="alternate" type="text/html" title="EditorFor and Interfaces Pt2 - Binding" /><published>2012-12-11T16:43:00+00:00</published><updated>2012-12-11T16:43:00+00:00</updated><id>https://jonegerton.com/dotnet/EditorFor-and-interfaces-pt2-binding</id><author><name></name></author><category term="C#" /><category term="MVC" /><summary type="html">This is a two part piece on working with Interfaces in MVC via the Html.EditorFor helper.</summary></entry><entry><title type="html">EditorFor and Interfaces Pt1 - Display</title><link href="https://jonegerton.com/dotnet/editorfor-and-interfaces-pt1-display/" rel="alternate" type="text/html" title="EditorFor and Interfaces Pt1 - Display" /><published>2012-12-11T16:03:00+00:00</published><updated>2012-12-11T16:03:00+00:00</updated><id>https://jonegerton.com/dotnet/EditorFor-and-interfaces-pt1-display</id><author><name></name></author><category term="C#" /><category term="MVC" /><category term="MVC4" /><category term="HTML" /><summary type="html">This is a two part piece on working with Interfaces in MVC via the Html.EditorFor helper.</summary></entry><entry><title type="html">DevExpress ASPxTreeList - Single node selection via client side JavaScript.</title><link href="https://jonegerton.com/web/devexpress-aspxtreelist-single-node-selection-via-client-side-javascript/" rel="alternate" type="text/html" title="DevExpress ASPxTreeList - Single node selection via client side JavaScript." /><published>2012-11-01T15:26:00+00:00</published><updated>2012-11-01T15:26:00+00:00</updated><id>https://jonegerton.com/web/DevExpress-ASPxTreeList-single-node-selection</id><author><name></name></author><category term="ASPxTreeList" /><category term="DevExpress" /><category term="jquery" /><category term="javascript" /><summary type="html">Using the DevExpress ASPxTreeList control recently I came across the problem of how to only allow one node checkbox to be selected at once.</summary></entry></feed>