User Glenn Slaven - Stack Overflowmost recent 30 from stackoverflow.com2009-12-01T14:25:36Zhttp://stackoverflow.com/feeds/user/2975http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/37324/what-is-the-syntax-for-an-inner-join-in-linq-to-sql6What is the syntax for an inner join in linq to sql?Glenn Slaven2008-09-01T01:00:24Z2009-12-01T06:52:49Z
<p>I'm writing a linq to sql statement & I'm just after the standard syntax for a normal inner join with an 'on' clause in C#.</p>
<p>ie how do you represent this in LINQ to SQL?:</p>
<pre><code>select * from table1
inner join table2 on table1.field table2.field
</code></pre>
<p><strong>EDIT:</strong> Real query to get all contacts for a dealer:</p>
<pre><code>select DealerContact.*
from Dealer
inner join DealerContact on Dealer.DealerID = DealerContact.DealerID
</code></pre>
http://stackoverflow.com/questions/818526/error-about-usercontrol-not-supported-in-wpf-in-expression-blend-20Error about UserControl not supported in WPF in Expression Blend 2Glenn Slaven2009-05-04T01:43:24Z2009-11-14T12:59:49Z
<p>I've created a test Silverlight 2 app in Visual Studio, just <a href="http://silverlight.net/learn/learnvideo.aspx?video=57010" rel="nofollow">copying the Tim Heuer video</a>, but when I go to open it in Blend I get this error</p>
<blockquote>
<p>UserControl is not supported in a Windows Presentation Foundation (WPF) project</p>
</blockquote>
<p>This is the XAML code</p>
<pre><code><UserControl x:Class="MyFirstApp.Page"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
Width="400" Height="300">
<Grid x:Name="LayoutRoot" Background="White">
<StackPanel Orientation="Vertical">
<TextBox x:Name="myTextBox" FontSize="60" />
<Button Content="Click Me" FontSize="60" Click="Button_Click" />
</StackPanel>
</Grid>
</UserControl>
</code></pre>
<p>Am I missing a reference or something?</p>
http://stackoverflow.com/questions/818917/listbox-not-populating-on-data-bind-in-silverlight-21ListBox not populating on data bind in Silverlight 2Glenn Slaven2009-05-04T05:52:32Z2009-11-03T07:30:38Z
<p>So I'm trying to learn Silverlight so I've built a simple demo app that pulls my home feed from <a href="http://friendfeed.com" rel="nofollow">FriendFeed</a> and displays the items in a list.</p>
<p>I've got a listbox defined: </p>
<pre><code> <ListBox x:Name="lstItems" Margin="5,61,5,5" Grid.Row="1">
<ListBox.ItemTemplate>
<DataTemplate>
<StackPanel Margin="8,8,43,8">
<TextBlock Text="{Binding Title}" />
</StackPanel>
</DataTemplate>
</ListBox.ItemTemplate>
</ListBox>
</code></pre>
<p>which is being populated by a web service call</p>
<pre><code>private void LoginButton_Click(object sender, RoutedEventArgs e)
{
FriendFeedServiceClient client = new FriendFeedServiceClient();
client.GetHomeCompleted += new EventHandler<GetHomeCompletedEventArgs>(client_GetHomeCompleted);
client.GetHomeAsync(FfUsername.Text, FfApiKey.Password);
}
void client_GetHomeCompleted(object sender, GetHomeCompletedEventArgs e)
{
lstItems.DataContext = e.Result;
}
</code></pre>
<p>The <code>FriendFeedServiceClient</code> is doing a call to a local webservice that proxies a request to the actual FriendFeed webservice.</p>
<p>The service call works fine, the items are returned, if I debug the call the <code>lstItems.DataContext</code> property is populated with a list of items with data in them, but the list doesn't display anything, it's always blank. Have I missed something?</p>
http://stackoverflow.com/questions/820376/silverlight-serialization-of-a-net-web-service-causes-xml-error0Silverlight serialization of a .NET Web service causes XML errorGlenn Slaven2009-05-04T14:37:35Z2009-11-03T07:30:06Z
<p>I've got this class being provided by a web service that is then being consumed by a Silverlight app (I don't know if that's relevant or not)</p>
<pre><code>[Serializable]
public class Entry
{
private string _title;
public string Id { get; set; }
public string Title { get { return _title; } set { _title = value; } }
public string Link { get; set; }
public DateTime Published { get; set; }
public DateTime Updated { get; set; }
public User User { get; set; }
public Service Service { get; set; }
public List<Comment> Comments { get; set; }
public List<Like> Likes { get; set; }
public List<Media> Media { get; set; }
}
</code></pre>
<p>The <code>_title</code> variable I added to demonstrate what's going wrong. When I reference the web service in my silverlight app, it generates the folowing xsd:</p>
<pre><code> <xs:complexType name="Entry">
<xs:sequence>
<xs:element name="_title" nillable="true" type="xs:string" />
<xs:element name="_x003C_Comments_x003E_k__BackingField" nillable="true" type="tns:ArrayOfComment" />
<xs:element name="_x003C_Id_x003E_k__BackingField" nillable="true" type="xs:string" />
<xs:element name="_x003C_Likes_x003E_k__BackingField" nillable="true" type="tns:ArrayOfLike" />
<xs:element name="_x003C_Link_x003E_k__BackingField" nillable="true" type="xs:string" />
<xs:element name="_x003C_Media_x003E_k__BackingField" nillable="true" type="tns:ArrayOfMedia" />
<xs:element name="_x003C_Published_x003E_k__BackingField" type="xs:dateTime" />
<xs:element name="_x003C_Service_x003E_k__BackingField" nillable="true" type="tns:Service" />
<xs:element name="_x003C_Updated_x003E_k__BackingField" type="xs:dateTime" />
<xs:element name="_x003C_User_x003E_k__BackingField" nillable="true" type="tns:User" />
</xs:sequence>
</xs:complexType>
</code></pre>
<p>Note only the title property is simply named, the others are named <code><Link>_BackingField</code> which completely dies when you try and load the element because you can't have < or > in the name of a property.</p>
<p>Why is it serializing the backing fields and not the public properties?</p>
http://stackoverflow.com/questions/886267/find-the-atrributes-on-an-action-from-the-viewengine-in-asp-net-mvc1Find the atrributes on an action from the ViewEngine in ASP.NET MVCGlenn Slaven2009-05-20T05:22:29Z2009-11-02T14:38:49Z
<p>I've got a custom ViewEngine and I want to modify the master page used depending on if the requested action has an <code>Authorize</code> attribute filter.</p>
<p>So far I'm just using reflection like this:</p>
<pre><code>var method = controllerContext.Controller.GetType().GetMethod(viewName, BindingFlags.Instance | BindingFlags.Public | BindingFlags.IgnoreCase);
if (method != null)
{
if (method.GetCustomAttributes(typeof(AuthorizeAttribute), true).Length > 0)
{
masterName = "Admin.master";
}
}
</code></pre>
<p>But I'm not a huge fan of using reflection for repetitive tasks. I know I can use the view cache to speed things up after the first time, but I'm wondering if there is a more direct way to get access to the list of filters applied to the action inside the <code>FindView</code> method of the <code>ViewEngine</code>?</p>
http://stackoverflow.com/questions/745666/ie6-using-multiple-ies-doesnt-let-me-edit-textboxes4IE6 using Multiple IEs doesn't let me edit textboxesGlenn Slaven2009-04-13T22:44:33Z2009-11-02T05:43:33Z
<p>Not sure if this counts as programming related, it's a tool that I use.</p>
<p>I've got <a href="http://tredosoft.com/Multiple%5FIE" rel="nofollow">Multiple IE</a> installed so I can test the sites I make on IE6 for those people who require it, but recently IE6 is not letting me enter into any textboxes, they're acting as if they're all disabled. </p>
<p>Has anyone else encountered this probelem and/or know of a solution. I've already tried uninstalling & re-installing multiple ie.</p>
http://stackoverflow.com/questions/45030/how-to-parse-a-string-into-a-nullable-int-in-c-net-3-59How to parse a string into a nullable int in C# (.NET 3.5)Glenn Slaven2008-09-05T00:22:54Z2009-10-23T13:20:33Z
<p>I'm wanting to parse a string into a nullable int in C#. ie. I want to get back either the int value of the string or null if it can't be parsed.</p>
<p>I was kind of hoping that this would work</p>
<pre><code>int? val = stringVal as int?;
</code></pre>
<p>But that won't work, so the way I'm doing it now is I've written this extension method</p>
<pre><code>public static int? ParseNullableInt(this string value)
{
if (value == null || value.Trim() == string.Empty)
{
return null;
}
else
{
try
{
return int.Parse(value);
}
catch
{
return null;
}
}
}
</code></pre>
<p>Is there a better way of doing this?</p>
<p><strong>EDIT:</strong> Thanks for the TryParse suggestions, I did know about that, but it worked out about the same. I'm more interested in knowing if there is a built-in framework method that will parse directly into a nullable int?</p>
http://stackoverflow.com/questions/1534475/origin-of-the-name-jquery/1534487#15344875Answer by Glenn Slaven for Origin of the name jQueryGlenn Slaven2009-10-07T22:01:15Z2009-10-07T22:01:15Z<p>As I understand it, it is because it gives you a way to 'query' the DOM using the selectors. The 'j' is for Javascript</p>
http://stackoverflow.com/questions/482224/the-jquery-validation-valid-method-returns-0-when-required-is-not-true0The jQuery Validation `valid()` method returns 0 when required is not trueGlenn Slaven2009-01-27T03:15:24Z2009-10-02T10:45:20Z
<p>I'm using the <a href="http://docs.jquery.com/Plugins/Validation" rel="nofollow">jQuery Validation plugin</a> and I've got a textbox with the class <code>digits</code> to force it to be digits only, but not required. When I call validate on the form it works fine, but if I call <code>valid()</code> on the textbox when it's empty, it returns 0, despite no error message showing and required not being set.</p>
<p>Does anyone know why it would be returning this for a seemingly valid input value?</p>
<p>Here is the code:</p>
<pre><code><input type="text" value="" name="kiloMetresTravelled" id="kiloMetresTravelled" class="digits"/>
</code></pre>
<p>and the script </p>
<pre><code><script type="text/javascript'>
var isvalid = jQuery('#kiloMetresTravelled').valid();
//isvalid == 0 when kiloMetresTravelled is blank
</script>
</code></pre>
http://stackoverflow.com/questions/441502/stop-the-jquery-autocomplete-plugin-from-forgetting-text-when-the-user-clicks-bac3Stop the jQuery autocomplete plugin from forgetting text when the user clicks backGlenn Slaven2009-01-14T00:48:45Z2009-09-30T19:11:56Z
<p>I'm using the <a href="http://docs.jquery.com/Plugins/Autocomplete" rel="nofollow">jQuery autocomplete plugin</a> to get a list of locations, which works fine. But if the user clicks the browser's back button after submitting the page with the autocomplete textbox, the textbox is empty. If I take the autocomplete off the textbox and submit & click back it remembers the text.</p>
<p>Is there a way to stop the autocomplete from clearing the textbox when the page loads?</p>
http://stackoverflow.com/questions/1495874/in-ie-lightbox-doesnt-show-if-a-synchronous-ajax-request-is-made0In IE lightbox doesn't show if a synchronous ajax request is madeGlenn Slaven2009-09-30T02:42:04Z2009-09-30T05:07:39Z
<p>I've got the following code that shows a lightbox 'please wait' box, then does a synchronous ajax request which removes the lightbox when it finishes. Works fine everywhere else, but in IE, the lightbox doesn't show. The Ajax request works fine, but it just seems to ignore the lightbox.</p>
<p>The <code>showLightbox</code> function just does that, show a modal lightbox with the passed in text.</p>
<pre><code>showLightbox("Please Wait");
$.ajax({
async: true,
dataType: 'json',
type: 'GET',
url: checkValidUrl,
data: submitData,
error: function(request, textStatus, errorThrown) {
valid = false;
},
success: function(data, textStatus) {
valid=true;
},
complete: function(request, textStatus) {
hideLightbox();
}
});
</code></pre>
<p>If I make the ajax requst async it works fine, but I need it to be synchronous because this is a validation method.</p>
<p><strong>Update</strong>: Also, if I wrap the whole ajax request in a setTimeout it also works in IE, but that is asynchronous too</p>
<p><strong>Update 2</strong>: I just replaced the lightbox with a simple div and did a jQuery .show() on beforeSend and .hide() on complete, and it didn't show that either, so it doesn't seem to have anything to do with the lightbox. If I whack an <code>alert()</code> immediately after <code>showLightbox()</code> it does show the lightbox</p>
http://stackoverflow.com/questions/43500/is-there-a-built-in-method-to-compare-collections-in-c/43505#4350514Answer by Glenn Slaven for Is there a built-in method to compare collections in C#?Glenn Slaven2008-09-04T11:22:19Z2009-09-11T14:52:22Z<p><a href="http://msdn.microsoft.com/en-us/library/bb342073.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/bb342073.aspx</a> </p>
<p><code>Enumerable.SequenceEqual</code></p>
<blockquote>
<p>Determines whether two sequences are equal by comparing their elements by using a specified IEqualityComparer(T).</p>
</blockquote>
<p>You can't directly compare the list & the dictionary, but you could compare the list of values from the Dictionary with the list</p>
http://stackoverflow.com/questions/1376917/is-there-any-way-to-get-visual-studio-to-reload-all-projects-when-the-proj-files0Is there any way to get Visual Studio to reload all projects when the .proj files have changed?Glenn Slaven2009-09-04T02:17:45Z2009-09-04T07:52:24Z
<p>If I do an svn update while I have Visual Studio open and a number of project files have changed (but not the solution file) I have to wait and click yes on the reload project dialog box every time. Sometimes this can take a while depending on how many projects have changed and how slow my pc is being. </p>
<p>Is there a way to say 'reload all' after the first dialog pops up, like holding down shift to force no to all in the Windows Explorer dialog? (note: I already tried this, it doesn't work)</p>
http://stackoverflow.com/questions/45325/how-do-you-force-visual-studio-to-regenerate-the-designer-files-for-aspx-ascx-fi17How do you force Visual Studio to regenerate the .designer files for aspx/ascx files?Glenn Slaven2008-09-05T06:21:06Z2009-09-02T10:06:47Z
<p>Sometimes when I'm editing page or control the .designer files stop being updated with the new controls I'm putting on the page. I'm not sure what's causing this to happen, but I'm wondering if there's any way of forcing Visual Studio to regenerate the .designer file. I'm using Visual Studio 2008</p>
<p><strong>EDIT:</strong> Sorry I should have noted I've already tried:</p>
<ul>
<li>Closing & re-opening all the files & Visual Studio</li>
<li>Making a change to a runat="server" control on the page</li>
<li>Deleting & re-adding the page directive</li>
</ul>
http://stackoverflow.com/questions/176820/whats-a-good-web-crawler-tool3What's a good Web Crawler toolGlenn Slaven2008-10-07T00:37:54Z2009-08-29T08:56:32Z
<p>I need to index a whole lot of webpages, what good webcrawler utilities are there? I'm preferably after something that .NET can talk to, but that's not a showstopper.</p>
<p>What I really need is something that I can give a site url to & it will follow every link and store the content for indexing.</p>
http://stackoverflow.com/questions/1310202/asp-net-mvc-app-automatically-converts-single-quotes-to-apos0ASP.NET MVC app automatically converts single quotes to 'Glenn Slaven2009-08-21T05:23:19Z2009-08-21T06:40:59Z
<p>I've got an MVC app that outputs a name that someone enters. When I debug the contents of the variable in the view it contains <code>O'Grady</code> but when it renders in IE (6 or 7) it comes out as <code>&apos;</code>, which then is rendered literally by IE. Doesn't happen in Firefox because Firefox can handle the ' char.</p>
<p>I know <code>&apos;</code> shouldn't be used, but I can't figure out where the view is changing the single quote to the <code>&apos;</code> value.</p>
<p>I should note, we're using the <a href="http://blog.codeville.net/2007/12/19/aspnet-mvc-prevent-xss-with-automatic-html-encoding/" rel="nofollow">SafeEncodingHelper</a>, but this value is not being cast as <code>RawHtml</code>, casting as <code>RawHtml</code> doesn't change the display.</p>
http://stackoverflow.com/questions/1297117/stop-a-background-image-from-disappearing-in-ie-when-the-inline-element-spans-2-l0Stop a background image from disappearing in IE when the inline element spans 2 linesGlenn Slaven2009-08-18T23:27:38Z2009-08-19T01:00:50Z
<p><a href="http://67.222.1.209/~acfund/" rel="nofollow">On this page</a> there is a list of footer links that have a little background image to place the dash before each one. This works fine in FireFox but in IE 6, 7 & 8 the background image for the item that spans 2 lines (Workplace Giving Employers) disappears. Why is this & does anyone know how to fix it? </p>
http://stackoverflow.com/questions/45325/how-do-you-force-visual-studio-to-regenerate-the-designer-files-for-aspx-ascx-fi/45334#453347Answer by Glenn Slaven for How do you force Visual Studio to regenerate the .designer files for aspx/ascx files?Glenn Slaven2008-09-05T06:32:13Z2009-08-03T00:28:17Z<p>Well I found a solution that works, though I don't really like it. I had to delete the .designer.cs file then recreate an empty file with the same name. When I went back in and saved the aspx file again, the designer file was re-generated.</p>
<p>Dodgy!</p>
http://stackoverflow.com/questions/1030856/how-to-check-sitecores-serialisation-tree-into-tfs0How to check SiteCore's serialisation tree into TFSGlenn Slaven2009-06-23T06:11:40Z2009-06-23T17:01:35Z
<p>We're using Sitecore and to share the content between developers we're serialising the content tree to the filesystem then checking this into source control. This worked fine in the last project that used SVN, but this new project is using TFS.</p>
<p>Unfortunately TFS won't accept paths that have a dollar sign in them, ie</p>
<pre><code>\serialization\master\sitecore\templates\Branches\Calendar\Agenda View Settings\$name.item
</code></pre>
<p>and this is a very common file name for Sitecore's serialisation structure. Is there any way around this? Can Sitecore be changed to not put the $ in front of the file names or do we have to switch to SVN?</p>
http://stackoverflow.com/questions/348576/can-you-create-dynamic-tests-with-ms-test-suite1Can you create 'Dynamic' tests with MS Test Suite?Glenn Slaven2008-12-08T03:00:51Z2009-06-22T08:00:02Z
<p>I'm using QUnit to test some JQuery, and I've got Watin to load up the test page and parse out the test results, but I'm wondering if there's a way to dynamically generate the tests from the page using the MS Test suite rather than having to write a Test function for each test?</p>
<p>I'm just trying to reduce the amount of code having to be written</p>
http://stackoverflow.com/questions/1011062/using-the-entity-framework-with-a-mysql-db-and-the-model-designer-doesnt-pickup0Using the entity framework with a MySQL DB and the model designer doesn't pickup stored proc parametersGlenn Slaven2009-06-18T06:17:17Z2009-06-18T06:17:17Z
<p>I've got the latest Mysql connector that allows you to use the Visual Studio Entity Framework designer. It's been working great, but I just added a stored proc. </p>
<p>The Server Explorer loaded it up fine with the parameters specified, but then I added it to the Entity Model & the code it generates doesn't have any input parameters.</p>
<p>Here's the stored procedure</p>
<pre><code>CREATE PROCEDURE `GetViewableMenuNodes`(IN siteId INT, IN parentId INT, IN userName varchar(255))
BEGIN
select m.*
from menunode m
where m.siteid = siteId
and m.showinmenu = 1
and m.parentid = parentId
and m.viewername = userName;
END
</code></pre>
<p>and this is the code generated by the model</p>
<pre><code>public global::System.Data.Objects.ObjectResult<MenuNode> GetViewableMenuNodes()
{
return base.ExecuteFunction<MenuNode>("GetViewableMenuNodes");
}
</code></pre>
http://stackoverflow.com/questions/238915/what-causes-the-cannot-unregister-updatepanel-error5What causes the 'Cannot unregister UpdatePanel' error?Glenn Slaven2008-10-27T01:48:27Z2009-06-05T19:33:32Z
<p>I've got a UserControl that contains an UpdatePanel. WHen I put that on a page, it throws the following error:</p>
<blockquote>
<p>Cannot unregister UpdatePanel with ID
'ReviewContentUpdatePanel' since it
was not registered with the
ScriptManager. This might occur if the
UpdatePanel was removed from the
control tree and later added again,
which is not supported. Parameter
name: updatePanel</p>
</blockquote>
<p><code>ReviewContentUpdatePanel</code> is the name of the update panel & it's not being removed or added in code, it exists in the aspx page and isn't removed. Has anyone come across this before?</p>
http://stackoverflow.com/questions/379838/using-depends-with-the-jquery-validation-plugin2Using depends with the jQuery Validation pluginGlenn Slaven2008-12-19T00:57:46Z2009-05-26T01:29:04Z
<p>I've got a form with a bunch of textboxes that are disabled by default, then enabled by use of a checkbox next to each one.</p>
<p>When enabled, the values in these textboxes are required to be a valid number, but when disabled they don't need a value (obviously). I'm using the jQuery Validation plugin to do this validation, but it doesn't seem to be doing what I expect.</p>
<p>When I click the checkbox and disable the textbox, I still get the invalid field error despite the <code>depends</code> clause I've added to the rules (see code below). Oddly, what actually happens is that the error message shows for a split second then goes away.</p>
<p>Here is a sample of the list of checkboxes & textboxes:</p>
<pre><code><ul id="ItemList">
<li>
<label for="OneSelected">One</label><input id="OneSelected" name="OneSelected" type="checkbox" value="true" />
<input name="OneSelected" type="hidden" value="false" />
<input disabled="disabled" id="OneValue" name="OneValue" type="text" />
</li>
<li>
<label for="TwoSelected">Two</label><input id="TwoSelected" name="TwoSelected" type="checkbox" value="true" />
<input name="TwoSelected" type="hidden" value="false" />
<input disabled="disabled" id="TwoValue" name="TwoValue" type="text" />
</li>
</ul>
</code></pre>
<p>And here is the jQuery code I'm using</p>
<pre><code>//Wire up the click event on the checkbox
jQuery('#ItemList :checkbox').click(function(event) {
var textBox = jQuery(this).siblings(':text');
textBox.valid();
if (!jQuery(this).attr("checked")) {
textBox.attr('disabled', 'disabled');
textBox.val('');
} else {
textBox.removeAttr('disabled');
textBox[0].focus();
}
});
//Add the rules to each textbox
jQuery('#ItemList :text').each(function(e) {
jQuery(this).rules('add', {
required: {
depends: function(element) {
return jQuery(element).siblings(':checkbox').attr('checked');
}
},
number: {
depends: function(element) {
return jQuery(element).siblings(':checkbox').attr('checked');
}
}
});
});
</code></pre>
<p>Ignore the hidden field in each <code>li</code> it's there because I'm using asp.net MVC's <code>Html.Checkbox</code> method.</p>
http://stackoverflow.com/questions/905550/how-can-you-use-asp-net-mvc-build-from-source-rather-than-the-gac1How can you use ASP.NET MVC build from source rather than the GAC?Glenn Slaven2009-05-25T06:15:20Z2009-05-25T15:30:41Z
<p>I've installed the ASP.NET MVC locally, but I want to be able to use the code that is in the SVN repository on CodePlex rather than the released 1.0 version. However if I remove the reference to the GAC assembly in my solution and add the reference to the locally built <code>System.Web.Mvc</code>, it will build fine, but at runtime it says:</p>
<blockquote>
<p>Parser Error Message: The type 'System.Web.Mvc.ViewPage' is ambiguous: it could come from assembly 'W:\source\projects\vinemedia\VineMedia.Site\bin\System.Web.Mvc.DLL' or from assembly 'C:\WINDOWS\assembly\GAC_MSIL\System.Web.Mvc\1.0.0.0__31bf3856ad364e35\System.Web.Mvc.dll'. Please specify the assembly explicitly in the type name.</p>
</blockquote>
http://stackoverflow.com/questions/896043/how-can-i-merge-2-javascript-objects-populating-the-properties-in-one-if-they-do1How can I merge 2 javascript objects, populating the properties in one if they don't exist in the other?Glenn Slaven2009-05-22T01:32:11Z2009-05-22T04:30:12Z
<p>If I have a javascript object/assoc. array defined like this:</p>
<pre><code>function somefunction(options) {
var defaults = {
prop1: 'foo',
prop2: 'bar'
};
//Do stuff here
}
</code></pre>
<p>and I want to use this as the default values for the function. So when the function gets called I want to populate the <code>options</code> variable with the values in <code>defaults</code>, but only if they don't exist in <code>options</code>.</p>
<p>So lets say that this was called</p>
<pre><code>somefunction({ prop1: 'fish' });
</code></pre>
<p>How can I make it so that <code>options</code> gets merged with <code>defaults</code> such that I get this</p>
<pre><code>{
prop1: 'fish',
prop2: 'bar'
}
</code></pre>
http://stackoverflow.com/questions/895790/why-does-visual-studios-format-document-tool-put-heading-tags-over-two-lines2Why does Visual Studio's Format Document tool put heading tags over two lines?Glenn Slaven2009-05-21T23:31:55Z2009-05-22T00:23:14Z
<p>So if I have a HTML heading like this</p>
<pre><code><h2>A Heading</h2>
</code></pre>
<p>and I run <code>Edit -> Format Document</code> it ends up looking like this</p>
<pre><code><h2>
A Heading</h2>
</code></pre>
<p>why is this? It doesn't do it to other block elements, but it does do it to other inline elements (eg <code><label></code>).</p>
<p><strong>Update</strong>: To clarify, I mean why is this the default, not where are the settings to change this</p>
http://stackoverflow.com/questions/863370/create-a-route-constraint-that-only-applies-a-route-when-the-action-has-a-particu0Create a Route Constraint that only applies a route when the action has a particular action filterGlenn Slaven2009-05-14T13:32:33Z2009-05-14T13:49:30Z
<p>I have a list of actions on various controllers that are 'Admin' functions (create, update, delete) but other actions on those same controllers that aren't admin actions.</p>
<p>What I want to do is create a route that will prefix <code>/Admin/</code> before all urls that call an action that have the <code>Authorize</code> filter attribute.</p>
<p>Is this even possible to do?</p>
http://stackoverflow.com/questions/745666/ie6-using-multiple-ies-doesnt-let-me-edit-textboxes/837602#8376022Answer by Glenn Slaven for IE6 using Multiple IEs doesn't let me edit textboxesGlenn Slaven2009-05-07T23:48:17Z2009-05-07T23:48:17Z<p>Discovered in the comments on the tredosoft site that installing <a href="http://tredosoft.com/Multiple%5FIE?page=6" rel="nofollow">IE8 breaks textbox & textareas</a> in the Multiple IE browser. I uninstalled IE8 & it's fixed the problem. </p>
http://stackoverflow.com/questions/810390/redirect-loop-in-cakephp0Redirect Loop in CakePHPGlenn Slaven2009-05-01T06:23:10Z2009-05-07T03:44:51Z
<p>I've got a CakePHP site that is stuck in a redirect loop. I've removed every piece of code that does a redirect & I've turned off autoRedirect on the Auth object.</p>
<p>This occurred when I logged out of the site and has persisted even after deleting all cookies and just trying to load the homepage. The index action is in <code>$this->Auth->allow</code>. </p>
<p>I should not, it keeps trying to redirect me to /users/login which then redirect loops. the login action is also in the allowed list</p>
<p>Does anyone have any ideas what could cause this?</p>
http://stackoverflow.com/questions/481817/what-are-the-biggest-gotchas-in-silverlight-2-0/822968#8229681Answer by Glenn Slaven for What are the biggest gotchas in Silverlight 2.0?Glenn Slaven2009-05-05T01:55:54Z2009-05-05T01:55:54Z<p><strong>No Credentials available on web requests</strong></p>
<p>The <code>Credentials</code> property is not available on the <code>WebClient</code> or <code>HttpWebRequest</code>. You need to run the request through a <a href="http://blogs.msdn.com/brada/archive/2008/05/03/accessing-the-asp-net-authentication-profile-and-role-service-in-silverlight.aspx" rel="nofollow">proxy service that will do the credentials</a>.</p>
http://stackoverflow.com/questions/1495874/in-ie-lightbox-doesnt-show-if-a-synchronous-ajax-request-is-made/1496197#1496197Comment by Glenn Slaven on In IE lightbox doesn't show if a synchronous ajax request is madeGlenn Slaven2009-10-05T22:27:13Z2009-10-05T22:27:13ZThis isn't blocking the user, it's blocking the interface from progressing forward. As I mentioned, the lightbox Please wait text is already blocking the user from doing anything, I need to make the JS wait for a response before it moves the user onto the next sectionhttp://stackoverflow.com/questions/1495874/in-ie-lightbox-doesnt-show-if-a-synchronous-ajax-request-is-made/1495922#1495922Comment by Glenn Slaven on In IE lightbox doesn't show if a synchronous ajax request is madeGlenn Slaven2009-10-05T22:25:29Z2009-10-05T22:25:29ZThe validation call is a blocking event, they're clicking on a box that will close an accordian interface and proceed the user forward. It <i>has</i> to wait and check firsthttp://stackoverflow.com/questions/1495874/in-ie-lightbox-doesnt-show-if-a-synchronous-ajax-request-is-made/1495922#1495922Comment by Glenn Slaven on In IE lightbox doesn't show if a synchronous ajax request is madeGlenn Slaven2009-10-01T12:07:09Z2009-10-01T12:07:09ZHow can you use callbacks in the middle of a validate function?
http://stackoverflow.com/questions/1495874/in-ie-lightbox-doesnt-show-if-a-synchronous-ajax-request-is-madeComment by Glenn Slaven on In IE lightbox doesn't show if a synchronous ajax request is madeGlenn Slaven2009-09-30T12:31:35Z2009-09-30T12:31:35ZIt doesn't lock the browser (except in IE 6 sometimes because it's useless) it just makes the site have a modal lightbox over it. They can close that tab at any time.http://stackoverflow.com/questions/1495874/in-ie-lightbox-doesnt-show-if-a-synchronous-ajax-request-is-made/1495922#1495922Comment by Glenn Slaven on In IE lightbox doesn't show if a synchronous ajax request is madeGlenn Slaven2009-09-30T12:29:17Z2009-09-30T12:29:17ZBecause it's not the user I'm needing to block, it's the function return, this is inside a validation method using the jQuery validate plugin. I need to know what the return status of the ajax request is before I return from the functionhttp://stackoverflow.com/questions/1495874/in-ie-lightbox-doesnt-show-if-a-synchronous-ajax-request-is-made/1496197#1496197Comment by Glenn Slaven on In IE lightbox doesn't show if a synchronous ajax request is madeGlenn Slaven2009-09-30T12:28:18Z2009-09-30T12:28:18ZUnfortunately that makes the request asynchronous, I need it to wait until the ajax request comes back.http://stackoverflow.com/questions/1495874/in-ie-lightbox-doesnt-show-if-a-synchronous-ajax-request-is-made/1495924#1495924Comment by Glenn Slaven on In IE lightbox doesn't show if a synchronous ajax request is madeGlenn Slaven2009-09-30T03:27:09Z2009-09-30T03:27:09ZI just replaced the lightbox with a simple div and did a jQuery .show() on beforeSend and .hide() on complete, and it didn't show that eitherhttp://stackoverflow.com/questions/1495874/in-ie-lightbox-doesnt-show-if-a-synchronous-ajax-request-is-made/1495924#1495924Comment by Glenn Slaven on In IE lightbox doesn't show if a synchronous ajax request is madeGlenn Slaven2009-09-30T03:23:35Z2009-09-30T03:23:35ZYeah, it does call those sort of methods. It's only the dynamic show/hide of elements that seems to be the problem. I've run into this before, not using a lightbox, but just showing a hidden div before a synchronous request, so I don't think it's the lightbox itselfhttp://stackoverflow.com/questions/1495874/in-ie-lightbox-doesnt-show-if-a-synchronous-ajax-request-is-made/1495922#1495922Comment by Glenn Slaven on In IE lightbox doesn't show if a synchronous ajax request is madeGlenn Slaven2009-09-30T03:12:22Z2009-09-30T03:12:22ZYes it locks, that's what the please wait lightbox is for. Yes we do server side validation, but we want to be able to tell the user at the top of the form that this data is wrong, before they get to the end and have to go back and start again. JS validation is always done for user convienience, not data securityhttp://stackoverflow.com/questions/1495874/in-ie-lightbox-doesnt-show-if-a-synchronous-ajax-request-is-made/1495924#1495924Comment by Glenn Slaven on In IE lightbox doesn't show if a synchronous ajax request is madeGlenn Slaven2009-09-30T03:10:58Z2009-09-30T03:10:58ZUnfortunately I tried that, it still doesn't workhttp://stackoverflow.com/questions/1495874/in-ie-lightbox-doesnt-show-if-a-synchronous-ajax-request-is-madeComment by Glenn Slaven on In IE lightbox doesn't show if a synchronous ajax request is madeGlenn Slaven2009-09-30T02:48:32Z2009-09-30T02:48:32ZHow can this be a CSS issue if it works on an async request?http://stackoverflow.com/questions/1000365/adding-a-new-column-in-the-table-doesnt-cause-the-result-in-cakephp/1000453#1000453Comment by Glenn Slaven on Adding a new column in the Table doesnt cause the result in CakephpGlenn Slaven2009-08-24T11:41:42Z2009-08-24T11:41:42ZThank you so much, I was beating my head against the wall about thishttp://stackoverflow.com/questions/1297117/stop-a-background-image-from-disappearing-in-ie-when-the-inline-element-spans-2-l/1297163#1297163Comment by Glenn Slaven on Stop a background image from disappearing in IE when the inline element spans 2 linesGlenn Slaven2009-08-19T02:06:36Z2009-08-19T02:06:36ZIt works. This actually pushes the item onto the next line, but that's good enough I think, at least the background is showinghttp://stackoverflow.com/questions/1297117/stop-a-background-image-from-disappearing-in-ie-when-the-inline-element-spans-2-lComment by Glenn Slaven on Stop a background image from disappearing in IE when the inline element spans 2 linesGlenn Slaven2009-08-19T00:17:00Z2009-08-19T00:17:00ZI've added that in the question now, thankshttp://stackoverflow.com/questions/1297117/stop-a-background-image-from-disappearing-in-ie-when-the-inline-element-spans-2-l/1297163#1297163Comment by Glenn Slaven on Stop a background image from disappearing in IE when the inline element spans 2 linesGlenn Slaven2009-08-19T00:16:15Z2009-08-19T00:16:15ZUnfortunately that hasn't done it. I've implemented that on the site, but the Workplace Giving Employers link still has no background image in IE