User Glenn Slaven - Stack Overflow most recent 30 from stackoverflow.com 2009-12-01T14:25:36Z http://stackoverflow.com/feeds/user/2975 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/37324/what-is-the-syntax-for-an-inner-join-in-linq-to-sql 6 What is the syntax for an inner join in linq to sql? Glenn Slaven 2008-09-01T01:00:24Z 2009-12-01T06:52:49Z <p>I'm writing a linq to sql statement &amp; 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-2 0 Error about UserControl not supported in WPF in Expression Blend 2 Glenn Slaven 2009-05-04T01:43:24Z 2009-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>&lt;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"&gt; &lt;Grid x:Name="LayoutRoot" Background="White"&gt; &lt;StackPanel Orientation="Vertical"&gt; &lt;TextBox x:Name="myTextBox" FontSize="60" /&gt; &lt;Button Content="Click Me" FontSize="60" Click="Button_Click" /&gt; &lt;/StackPanel&gt; &lt;/Grid&gt; &lt;/UserControl&gt; </code></pre> <p>Am I missing a reference or something?</p> http://stackoverflow.com/questions/818917/listbox-not-populating-on-data-bind-in-silverlight-2 1 ListBox not populating on data bind in Silverlight 2 Glenn Slaven 2009-05-04T05:52:32Z 2009-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> &lt;ListBox x:Name="lstItems" Margin="5,61,5,5" Grid.Row="1"&gt; &lt;ListBox.ItemTemplate&gt; &lt;DataTemplate&gt; &lt;StackPanel Margin="8,8,43,8"&gt; &lt;TextBlock Text="{Binding Title}" /&gt; &lt;/StackPanel&gt; &lt;/DataTemplate&gt; &lt;/ListBox.ItemTemplate&gt; &lt;/ListBox&gt; </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&lt;GetHomeCompletedEventArgs&gt;(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-error 0 Silverlight serialization of a .NET Web service causes XML error Glenn Slaven 2009-05-04T14:37:35Z 2009-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&lt;Comment&gt; Comments { get; set; } public List&lt;Like&gt; Likes { get; set; } public List&lt;Media&gt; 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> &lt;xs:complexType name="Entry"&gt; &lt;xs:sequence&gt; &lt;xs:element name="_title" nillable="true" type="xs:string" /&gt; &lt;xs:element name="_x003C_Comments_x003E_k__BackingField" nillable="true" type="tns:ArrayOfComment" /&gt; &lt;xs:element name="_x003C_Id_x003E_k__BackingField" nillable="true" type="xs:string" /&gt; &lt;xs:element name="_x003C_Likes_x003E_k__BackingField" nillable="true" type="tns:ArrayOfLike" /&gt; &lt;xs:element name="_x003C_Link_x003E_k__BackingField" nillable="true" type="xs:string" /&gt; &lt;xs:element name="_x003C_Media_x003E_k__BackingField" nillable="true" type="tns:ArrayOfMedia" /&gt; &lt;xs:element name="_x003C_Published_x003E_k__BackingField" type="xs:dateTime" /&gt; &lt;xs:element name="_x003C_Service_x003E_k__BackingField" nillable="true" type="tns:Service" /&gt; &lt;xs:element name="_x003C_Updated_x003E_k__BackingField" type="xs:dateTime" /&gt; &lt;xs:element name="_x003C_User_x003E_k__BackingField" nillable="true" type="tns:User" /&gt; &lt;/xs:sequence&gt; &lt;/xs:complexType&gt; </code></pre> <p>Note only the title property is simply named, the others are named <code>&lt;Link&gt;_BackingField</code> which completely dies when you try and load the element because you can't have &lt; 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-mvc 1 Find the atrributes on an action from the ViewEngine in ASP.NET MVC Glenn Slaven 2009-05-20T05:22:29Z 2009-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 &gt; 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-textboxes 4 IE6 using Multiple IEs doesn't let me edit textboxes Glenn Slaven 2009-04-13T22:44:33Z 2009-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 &amp; re-installing multiple ie.</p> http://stackoverflow.com/questions/45030/how-to-parse-a-string-into-a-nullable-int-in-c-net-3-5 9 How to parse a string into a nullable int in C# (.NET 3.5) Glenn Slaven 2008-09-05T00:22:54Z 2009-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#1534487 5 Answer by Glenn Slaven for Origin of the name jQuery Glenn Slaven 2009-10-07T22:01:15Z 2009-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-true 0 The jQuery Validation `valid()` method returns 0 when required is not true Glenn Slaven 2009-01-27T03:15:24Z 2009-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>&lt;input type="text" value="" name="kiloMetresTravelled" id="kiloMetresTravelled" class="digits"/&gt; </code></pre> <p>and the script </p> <pre><code>&lt;script type="text/javascript'&gt; var isvalid = jQuery('#kiloMetresTravelled').valid(); //isvalid == 0 when kiloMetresTravelled is blank &lt;/script&gt; </code></pre> http://stackoverflow.com/questions/441502/stop-the-jquery-autocomplete-plugin-from-forgetting-text-when-the-user-clicks-bac 3 Stop the jQuery autocomplete plugin from forgetting text when the user clicks back Glenn Slaven 2009-01-14T00:48:45Z 2009-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 &amp; 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-made 0 In IE lightbox doesn't show if a synchronous ajax request is made Glenn Slaven 2009-09-30T02:42:04Z 2009-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#43505 14 Answer by Glenn Slaven for Is there a built-in method to compare collections in C#? Glenn Slaven 2008-09-04T11:22:19Z 2009-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 &amp; 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-files 0 Is there any way to get Visual Studio to reload all projects when the .proj files have changed? Glenn Slaven 2009-09-04T02:17:45Z 2009-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-fi 17 How do you force Visual Studio to regenerate the .designer files for aspx/ascx files? Glenn Slaven 2008-09-05T06:21:06Z 2009-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 &amp; re-opening all the files &amp; Visual Studio</li> <li>Making a change to a runat="server" control on the page</li> <li>Deleting &amp; re-adding the page directive</li> </ul> http://stackoverflow.com/questions/176820/whats-a-good-web-crawler-tool 3 What's a good Web Crawler tool Glenn Slaven 2008-10-07T00:37:54Z 2009-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 &amp; 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-apos 0 ASP.NET MVC app automatically converts single quotes to &apos; Glenn Slaven 2009-08-21T05:23:19Z 2009-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>&amp;apos;</code>, which then is rendered literally by IE. Doesn't happen in Firefox because Firefox can handle the &apos; char.</p> <p>I know <code>&amp;apos;</code> shouldn't be used, but I can't figure out where the view is changing the single quote to the <code>&amp;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-l 0 Stop a background image from disappearing in IE when the inline element spans 2 lines Glenn Slaven 2009-08-18T23:27:38Z 2009-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 &amp; 8 the background image for the item that spans 2 lines (Workplace Giving Employers) disappears. Why is this &amp; 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#45334 7 Answer by Glenn Slaven for How do you force Visual Studio to regenerate the .designer files for aspx/ascx files? Glenn Slaven 2008-09-05T06:32:13Z 2009-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-tfs 0 How to check SiteCore's serialisation tree into TFS Glenn Slaven 2009-06-23T06:11:40Z 2009-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-suite 1 Can you create 'Dynamic' tests with MS Test Suite? Glenn Slaven 2008-12-08T03:00:51Z 2009-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-pickup 0 Using the entity framework with a MySQL DB and the model designer doesn't pickup stored proc parameters Glenn Slaven 2009-06-18T06:17:17Z 2009-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 &amp; 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&lt;MenuNode&gt; GetViewableMenuNodes() { return base.ExecuteFunction&lt;MenuNode&gt;("GetViewableMenuNodes"); } </code></pre> http://stackoverflow.com/questions/238915/what-causes-the-cannot-unregister-updatepanel-error 5 What causes the 'Cannot unregister UpdatePanel' error? Glenn Slaven 2008-10-27T01:48:27Z 2009-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 &amp; 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-plugin 2 Using depends with the jQuery Validation plugin Glenn Slaven 2008-12-19T00:57:46Z 2009-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 &amp; textboxes:</p> <pre><code>&lt;ul id="ItemList"&gt; &lt;li&gt; &lt;label for="OneSelected"&gt;One&lt;/label&gt;&lt;input id="OneSelected" name="OneSelected" type="checkbox" value="true" /&gt; &lt;input name="OneSelected" type="hidden" value="false" /&gt; &lt;input disabled="disabled" id="OneValue" name="OneValue" type="text" /&gt; &lt;/li&gt; &lt;li&gt; &lt;label for="TwoSelected"&gt;Two&lt;/label&gt;&lt;input id="TwoSelected" name="TwoSelected" type="checkbox" value="true" /&gt; &lt;input name="TwoSelected" type="hidden" value="false" /&gt; &lt;input disabled="disabled" id="TwoValue" name="TwoValue" type="text" /&gt; &lt;/li&gt; &lt;/ul&gt; </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-gac 1 How can you use ASP.NET MVC build from source rather than the GAC? Glenn Slaven 2009-05-25T06:15:20Z 2009-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-do 1 How can I merge 2 javascript objects, populating the properties in one if they don't exist in the other? Glenn Slaven 2009-05-22T01:32:11Z 2009-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-lines 2 Why does Visual Studio's Format Document tool put heading tags over two lines? Glenn Slaven 2009-05-21T23:31:55Z 2009-05-22T00:23:14Z <p>So if I have a HTML heading like this</p> <pre><code>&lt;h2&gt;A Heading&lt;/h2&gt; </code></pre> <p>and I run <code>Edit -&gt; Format Document</code> it ends up looking like this</p> <pre><code>&lt;h2&gt; A Heading&lt;/h2&gt; </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>&lt;label&gt;</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-particu 0 Create a Route Constraint that only applies a route when the action has a particular action filter Glenn Slaven 2009-05-14T13:32:33Z 2009-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#837602 2 Answer by Glenn Slaven for IE6 using Multiple IEs doesn't let me edit textboxes Glenn Slaven 2009-05-07T23:48:17Z 2009-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 &amp; textareas</a> in the Multiple IE browser. I uninstalled IE8 &amp; it's fixed the problem. </p> http://stackoverflow.com/questions/810390/redirect-loop-in-cakephp 0 Redirect Loop in CakePHP Glenn Slaven 2009-05-01T06:23:10Z 2009-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 &amp; 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-&gt;Auth-&gt;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#822968 1 Answer by Glenn Slaven for What are the biggest gotchas in Silverlight 2.0? Glenn Slaven 2009-05-05T01:55:54Z 2009-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#1496197 Comment by Glenn Slaven on In IE lightbox doesn't show if a synchronous ajax request is made Glenn Slaven 2009-10-05T22:27:13Z 2009-10-05T22:27:13Z This 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 section http://stackoverflow.com/questions/1495874/in-ie-lightbox-doesnt-show-if-a-synchronous-ajax-request-is-made/1495922#1495922 Comment by Glenn Slaven on In IE lightbox doesn't show if a synchronous ajax request is made Glenn Slaven 2009-10-05T22:25:29Z 2009-10-05T22:25:29Z The 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 first http://stackoverflow.com/questions/1495874/in-ie-lightbox-doesnt-show-if-a-synchronous-ajax-request-is-made/1495922#1495922 Comment by Glenn Slaven on In IE lightbox doesn't show if a synchronous ajax request is made Glenn Slaven 2009-10-01T12:07:09Z 2009-10-01T12:07:09Z How 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-made Comment by Glenn Slaven on In IE lightbox doesn't show if a synchronous ajax request is made Glenn Slaven 2009-09-30T12:31:35Z 2009-09-30T12:31:35Z It 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#1495922 Comment by Glenn Slaven on In IE lightbox doesn't show if a synchronous ajax request is made Glenn Slaven 2009-09-30T12:29:17Z 2009-09-30T12:29:17Z Because 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 function http://stackoverflow.com/questions/1495874/in-ie-lightbox-doesnt-show-if-a-synchronous-ajax-request-is-made/1496197#1496197 Comment by Glenn Slaven on In IE lightbox doesn't show if a synchronous ajax request is made Glenn Slaven 2009-09-30T12:28:18Z 2009-09-30T12:28:18Z Unfortunately 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#1495924 Comment by Glenn Slaven on In IE lightbox doesn't show if a synchronous ajax request is made Glenn Slaven 2009-09-30T03:27:09Z 2009-09-30T03:27:09Z 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 http://stackoverflow.com/questions/1495874/in-ie-lightbox-doesnt-show-if-a-synchronous-ajax-request-is-made/1495924#1495924 Comment by Glenn Slaven on In IE lightbox doesn't show if a synchronous ajax request is made Glenn Slaven 2009-09-30T03:23:35Z 2009-09-30T03:23:35Z Yeah, 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 itself http://stackoverflow.com/questions/1495874/in-ie-lightbox-doesnt-show-if-a-synchronous-ajax-request-is-made/1495922#1495922 Comment by Glenn Slaven on In IE lightbox doesn't show if a synchronous ajax request is made Glenn Slaven 2009-09-30T03:12:22Z 2009-09-30T03:12:22Z Yes 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 security http://stackoverflow.com/questions/1495874/in-ie-lightbox-doesnt-show-if-a-synchronous-ajax-request-is-made/1495924#1495924 Comment by Glenn Slaven on In IE lightbox doesn't show if a synchronous ajax request is made Glenn Slaven 2009-09-30T03:10:58Z 2009-09-30T03:10:58Z Unfortunately I tried that, it still doesn't work http://stackoverflow.com/questions/1495874/in-ie-lightbox-doesnt-show-if-a-synchronous-ajax-request-is-made Comment by Glenn Slaven on In IE lightbox doesn't show if a synchronous ajax request is made Glenn Slaven 2009-09-30T02:48:32Z 2009-09-30T02:48:32Z How 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#1000453 Comment by Glenn Slaven on Adding a new column in the Table doesnt cause the result in Cakephp Glenn Slaven 2009-08-24T11:41:42Z 2009-08-24T11:41:42Z Thank you so much, I was beating my head against the wall about this http://stackoverflow.com/questions/1297117/stop-a-background-image-from-disappearing-in-ie-when-the-inline-element-spans-2-l/1297163#1297163 Comment by Glenn Slaven on Stop a background image from disappearing in IE when the inline element spans 2 lines Glenn Slaven 2009-08-19T02:06:36Z 2009-08-19T02:06:36Z It works. This actually pushes the item onto the next line, but that's good enough I think, at least the background is showing http://stackoverflow.com/questions/1297117/stop-a-background-image-from-disappearing-in-ie-when-the-inline-element-spans-2-l Comment by Glenn Slaven on Stop a background image from disappearing in IE when the inline element spans 2 lines Glenn Slaven 2009-08-19T00:17:00Z 2009-08-19T00:17:00Z I've added that in the question now, thanks http://stackoverflow.com/questions/1297117/stop-a-background-image-from-disappearing-in-ie-when-the-inline-element-spans-2-l/1297163#1297163 Comment by Glenn Slaven on Stop a background image from disappearing in IE when the inline element spans 2 lines Glenn Slaven 2009-08-19T00:16:15Z 2009-08-19T00:16:15Z Unfortunately 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