User tvanfosson - Stack Overflow most recent 30 from stackoverflow.com 2009-12-19T08:10:27Z http://stackoverflow.com/feeds/user/12950 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1928955/the-good-way-to-display-or-not-an-image-using-mvc-net/1928985#1928985 2 Answer by tvanfosson for The good way to display or not an image using MVC.net tvanfosson 2009-12-18T15:50:11Z 2009-12-18T15:50:11Z <p>How about:</p> <pre><code>&lt;% if (myboolean) { %&gt; &lt;img src="&lt;%= Url.Content( "~/attention.gif" ) %&gt;" alt="dates invalid" /&gt; &lt;% } %&gt; </code></pre> <p>This works pretty well for a one-off. If you needed to do this frequently, then investing in an HtmlHelper extension seems reasonable, though you could use the one from MVC Futures and simply use an Html attribute of <code>style="display: none;"</code> and get the same effect without writing your own.</p> http://stackoverflow.com/questions/1927662/jquery-draggable-how-do-i-create-a-new-draggable-div-on-the-fly-that-can-then-b/1927790#1927790 1 Answer by tvanfosson for Jquery Draggable - How do I create a new draggable div on the fly that can then be dragged? tvanfosson 2009-12-18T11:54:05Z 2009-12-18T11:54:05Z <p>Simply apply draggable to the newly created DIV. If the DIV is exactly the same, except for position, you could also not recreate it, but just reposition it. This would retain all of it's handlers.</p> <pre><code> // remove, reposition, reapply handlers $('#jobN').remove().appendTo('#dayViewN').draggable(); </code></pre> <p>or</p> <pre><code> // reposition, retain handlers $('#jobN').appendTo('#dayViewN'); </code></pre> http://stackoverflow.com/questions/1919155/jquery-ui-dialog-adding-elements-next-to-a-button/1919243#1919243 2 Answer by tvanfosson for jQuery UI Dialog, adding elements next to a button tvanfosson 2009-12-17T03:19:12Z 2009-12-18T02:55:54Z <p>How about just inserting your spinner before the first ui-dialog-button?</p> <pre><code>buttons: { 'Create' : function() { $('&lt;img src="spinner.gif" style="float: left;" /&gt;').insertBefore('.ui-dialog-buttonpane &gt; button:first'); ...ajax stuff... $(this).dialog('destroy'); } } </code></pre> http://stackoverflow.com/questions/1921701/how-to-copy-list-to-array/1921728#1921728 5 Answer by tvanfosson for How to copy List to Array tvanfosson 2009-12-17T13:15:28Z 2009-12-17T14:28:53Z <p>The new way (using extensions or the ToArray() method on generic lists in .Net 2.0):</p> <pre><code>Guid[] guidArray = MyList.ToArray(); </code></pre> <p>The old way:</p> <pre><code>Guid[] guidArray = new guidArray[MyList.Length]; int idx = 0; foreach (var guid in MyList) { guidArray[idx++] = guid; } </code></pre> http://stackoverflow.com/questions/1919246/linq-inserting-new-data-replaces-existing-data-on-database-why/1919264#1919264 1 Answer by tvanfosson for linq - inserting new data replaces existing data on database.why? tvanfosson 2009-12-17T03:25:48Z 2009-12-17T03:25:48Z <p>Unless you've also retrieved all the data and called DeleteOnSubmit for each of the retrieved elements, it shouldn't be deleting any data when you do an InsertOnSubmit. Items that are inserted result in SQL insert statements being generated when you call SubmitChanges. The only way that I know of to get a delete statement is to call DeleteOnSubmit. Perhaps, you are thinking that you need to remove the items from the table before calling submit changes to reduce the amount of data pushed back to the server. This isn't correct. Only the new or changed data will be sent back -- and calling DeleteOnSubmit will force the data to be removed when SubmitChanges is called.</p> http://stackoverflow.com/questions/1919198/not-able-to-access-network-drive-from-vb-net-windows-service/1919219#1919219 1 Answer by tvanfosson for Not able to access network drive from VB.net Windows Service tvanfosson 2009-12-17T03:07:48Z 2009-12-17T03:07:48Z <p>Typically a Windows service runs under an id whose credentials are not authorized to access files on the network. Try running your windows service under the domain account which can access the network files. Make sure that this account has access to both the network and local folders/files that it will be reading and writing.</p> <p>Also, you'll want to use the UNC path, not a mapped drive. The mapped drive won't be mounted for the service.</p> http://stackoverflow.com/questions/1916773/linq-to-sql-mapping/1916826#1916826 2 Answer by tvanfosson for Linq to Sql Mapping tvanfosson 2009-12-16T18:51:11Z 2009-12-16T18:51:11Z <p>It would be nice if you had the option to "refresh" keeping any local customizations that you've made, but the designer doesn't seem to work that way. You can, however, simply make the same updates (by hand) in the designer that you've made to the table by adding/deleting columns from the generated class in the designer.</p> http://stackoverflow.com/questions/1916716/logs-from-load-balanced-servers/1916738#1916738 2 Answer by tvanfosson for Logs from load-balanced servers tvanfosson 2009-12-16T18:40:42Z 2009-12-16T18:40:42Z <p>Log to SQL using the <a href="http://logging.apache.org/log4j/1.2/apidocs/org/apache/log4j/jdbc/JDBCAppender.html" rel="nofollow">JDBC appender</a> (or an <a href="http://www.dankomannhaupt.de/projects/index.html" rel="nofollow">alternative version</a>) instead of files.</p> http://stackoverflow.com/questions/1915755/toggle-divs-on-a-page-using-jquery/1915769#1915769 4 Answer by tvanfosson for Toggle DIVs on a page using jQuery tvanfosson 2009-12-16T16:17:32Z 2009-12-16T16:23:38Z <p>The best way to go about it is to use <a href="http://jqueryui.com/" rel="nofollow">jQuery UI</a> and the <a href="http://jqueryui.com/demos/tabs/" rel="nofollow">tabs</a> plugin. If you must implement a tabbed interface yourself, at least look at their code for idea on how to go about it. Note that you don't have to download the entire UI code to use just the tabs. You can make the download smaller by restricting it to just those components that you need.</p> <pre><code>&lt;div class="tabs"&gt; &lt;ul class="stats"&gt; &lt;li&gt;&lt;a href="#overall-div" id="overall"&gt;Overall stats&lt;/a&gt;&lt;/li&gt; &lt;li&gt;&lt;a href="#hourly-div" id="hourly"&gt;Hourly Bandwidth&lt;/a&gt;&lt;/li&gt; &lt;li&gt;&lt;a href="#daily-div" id="daily"&gt;Daily Bandwidth&lt;/a&gt;&lt;/li&gt; &lt;li&gt;&lt;a href="#monthly-div" id="monthly"&gt;Monthly Bandwidth&lt;/a&gt;&lt;/li&gt; &lt;/ul&gt; &lt;div id="overall-div"&gt; overall &lt;/div&gt; &lt;div id="hourly-div"&gt; hourly &lt;/div&gt; &lt;div id="daily-div"&gt; daily &lt;/div&gt; &lt;div id="monthly-div"&gt; monthly &lt;/div&gt; &lt;/div&gt; &lt;script type="text/javascript"&gt; $(function() { $('.tabs').tabs(); // that's it unless you want to customize }); &lt;/script&gt; </code></pre> <p>A nice added bonus to this is that it works just fine if the user has javascript disabled.</p> http://stackoverflow.com/questions/1915484/is-writing-a-query-using-views-a-good-strategy/1915637#1915637 0 Answer by tvanfosson for Is writing a query using Views a good strategy? tvanfosson 2009-12-16T16:03:21Z 2009-12-16T16:03:21Z <p>I know that there is a <a href="http://www.agiledata.org/essays/bestPractices.html" rel="nofollow">school of thought</a> that says that you ought to have a view-per-table and develop your code against your views instead of your tables. In this scenario, you can use evolutionary development methods and, as your modify your tables, develop new views for your new code without breaking the views that the old code relies on. I've never actually had a project that I thought would be complicated enough that I couldn't just update the code as the tables changed so I have never used this method.</p> <p>As for writing queries into views there is one scenario under which I do this. They may be specific to my use of LINQ, however, so take this with a grain of salt. If I have a query that needs some complicated processing and returns a composite object based on more than one table, I will usually write a stored procedure or table-valued function to do the query. I've found it easiest to work with the LINQ designer if I also create a view that I can drag onto the design surface to create the class for the objects that the sp/function returns rather than having it auto-generate a class. It gives me more control over naming the class later if I choose.</p> http://stackoverflow.com/questions/1915406/sql-server-2005-or-2008-for-release/1915493#1915493 0 Answer by tvanfosson for SQL Server 2005 or 2008 for release tvanfosson 2009-12-16T15:45:34Z 2009-12-16T15:45:34Z <p>Will this delay your release? Will it delay it enough to cost money?</p> <p>I wouldn't worry too much about the installation complication. Your customers will experience the same (or worse) when they have to upgrade to 2008, which they will eventually because you won't stick with 2005 forever. I'd be more concerned about how it affects your project and sales. That would be the trade-off that I would focus on.</p> http://stackoverflow.com/questions/1915333/c-web-application-event-handling/1915359#1915359 2 Answer by tvanfosson for C# web application event handling tvanfosson 2009-12-16T15:27:54Z 2009-12-16T15:38:47Z <p>You'll need to use javascript on the client to handle this. What you want to do is add a handler for the blur <a href="http://w3schools.com/jsref/dom%5Fobj%5Fevent.asp" rel="nofollow">event</a>. The <a href="http://w3schools.com/jsref/event%5Fonblur.asp" rel="nofollow">blur event</a> occurs when an element loses focus. Use this in conjunction with your client-side validation logic to trigger validation when the field loses focus.</p> <p>I prefer adding my javascript unobtrusively. Below is an example of how you would do it using jQuery and the jQuery validation plugin. Using it with standard ASP.NET validators would work as well, just replace the call to the validation logic with that for your client-side validators, i.e., call Page_ClientValidate().</p> <pre><code>&lt;script type="text/javscript"&gt; $('form').validate(); // set up validation $('#lastTextBoxID').blur( function() { $('form').valid(); // validate when the blur event happens }); &lt;/script&gt; </code></pre> http://stackoverflow.com/questions/1914625/what-is-the-best-way-to-transparently-log-changes-to-objects-when-using-linq-to-s/1914652#1914652 2 Answer by tvanfosson for What is the best way to transparently log changes to objects when using LINQ-to-SQL? tvanfosson 2009-12-16T13:27:56Z 2009-12-16T13:27:56Z <p>I've done some <a href="http://farm-fresh-code.blogspot.com/2009/05/auditing-inserts-and-updates-using-linq.html" rel="nofollow">similar work</a> on auditing changes -- which is the first step. My solution works by making my designer context abstract then deriving the real context from it and overriding SubmitChanges. It works in conjunction with a separate audit context and a helper class that can take an object and construct the audit object from it. It relies on attributes to give the necessary information on which class is the audit class for a particular object.</p> <p>You can find more information on my blog at <a href="http://farm-fresh-code.blogspot.com" rel="nofollow">http://farm-fresh-code.blogspot.com</a>. It's too involved to repeat here.</p> http://stackoverflow.com/questions/1910824/asp-net-mvc-htmlhelper-checkbox/1910899#1910899 1 Answer by tvanfosson for ASP.Net MVC HtmlHelper.Checkbox tvanfosson 2009-12-15T22:31:41Z 2009-12-15T22:31:41Z <p>The values are fixed in the <a href="http://aspnet.codeplex.com/SourceControl/changeset/view/23011#288010" rel="nofollow">HtmlHelper code</a>. You could always create your own helper using the source for the existing helper as a guide or hand-code the HTML. The relevant snippets are below:</p> <pre><code>public static string CheckBox(this HtmlHelper htmlHelper, string name, IDictionary&lt;string, object&gt; htmlAttributes) { return htmlHelper.InputHelper(InputType.CheckBox, name, "true", true /* useViewData */, false /* isChecked */, true /* setId */, false /* isExplicitValue */, htmlAttributes); } public static string CheckBox(this HtmlHelper htmlHelper, string name, bool isChecked, IDictionary&lt;string, object&gt; htmlAttributes) { // checked is an explicit parameter, but the value attribute is implicit so the dictionary's must take // precedence. RouteValueDictionary attributes = htmlAttributes == null ? new RouteValueDictionary() : new RouteValueDictionary(htmlAttributes); attributes.Remove("checked"); return htmlHelper.InputHelper(InputType.CheckBox, name, "true", false /* useViewData */, isChecked, true /* setId */, false /* isExplicitValue */, attributes); } </code></pre> <p>And from InputHelper():</p> <pre><code>if (inputType == InputType.CheckBox) { // Render an additional &lt;input type="hidden".../&gt; for checkboxes. This // addresses scenarios where unchecked checkboxes are not sent in the request. // Sending a hidden input makes it possible to know that the checkbox was present // on the page when the request was submitted. StringBuilder inputItemBuilder = new StringBuilder(); inputItemBuilder.Append(tagBuilder.ToString(TagRenderMode.SelfClosing)); TagBuilder hiddenInput = new TagBuilder("input"); hiddenInput.MergeAttribute("type", HtmlHelper.GetInputTypeString(InputType.Hidden)); hiddenInput.MergeAttribute("name", name); hiddenInput.MergeAttribute("value", "false"); inputItemBuilder.Append(hiddenInput.ToString(TagRenderMode.SelfClosing)); return inputItemBuilder.ToString(); } </code></pre> http://stackoverflow.com/questions/1910084/start-and-end-divs-using-two-controls-aps-net-mvc/1910112#1910112 2 Answer by tvanfosson for Start and End Divs Using Two Controls - Aps.net mvc tvanfosson 2009-12-15T20:19:26Z 2009-12-15T20:19:26Z <p>Have you thought of creating an HtmlHelper extension a la the BeginForm extension that would allow you to do the single open/close tags. This extension returns an object of a class that implements IDisposable and uses the Dispose method to generate the closing tag.</p> <p>Then your HTML would look like:</p> <pre><code>&lt;% using (Html.ShadowBoxStart()) { %&gt; Hello, World! &lt;% } %&gt; </code></pre> <p>Some code that you might be able adapt:</p> <pre><code>public static class HtmlHelperExtensions { /// &lt;summary&gt; /// Begins a container block using the specified tag. Writes directly to the response. Expected to be used within a using block. /// &lt;/summary&gt; /// &lt;param name="helper"&gt;HtmlHelper object from a View.&lt;/param&gt; /// &lt;param name="tag"&gt;The container tag (div, span, hN, etc.)&lt;/param&gt; /// &lt;returns&gt;An MvcContainer that writes the closing tag when it is disposed.&lt;/returns&gt; public static MvcContainer BeginContainer( this HtmlHelper helper, string tag ) { return BeginContainer( helper, tag, null ); } /// &lt;summary&gt; /// Begins a container block using the specified tag. Writes directly to the response. Expected to be used within a using block. /// &lt;/summary&gt; /// &lt;param name="helper"&gt;HtmlHelper object from a View.&lt;/param&gt; /// &lt;param name="tag"&gt;The container tag (div, span, hN, etc.)&lt;/param&gt; /// &lt;param name="htmlAttributes"&gt;HTML attribute to apply to the tag.&lt;/param&gt; /// &lt;returns&gt;An MvcContainer that writes the closing tag when it is disposed.&lt;/returns&gt; public static MvcContainer BeginContainer( this HtmlHelper helper, string tag, object htmlAttributes ) { var builder = new TagBuilder( tag ); builder.MergeAttributes( new ParameterDictionary( htmlAttributes ) ); helper.ViewContext.HttpContext.Response.Write( builder.ToString( TagRenderMode.StartTag ) ); return new MvcContainer( helper.ViewContext.HttpContext.Response, tag ); } } </code></pre> <p>Container class:</p> <pre><code>/// &lt;summary&gt; /// Used by the HtmlHelpeExtensions in conjunction with a using block to close /// a container tag. /// &lt;/summary&gt; public class MvcContainer : IDisposable { protected bool Disposed { get; set; } protected HttpResponseBase HttpResponse { get; set; } protected string Tag { get; set; } public MvcContainer( HttpResponseBase httpResponse, string tag ) { if (httpResponse == null) { throw new ArgumentNullException( "httpResponse" ); } if (string.IsNullOrEmpty( tag )) { throw new ArgumentNullException( "tag" ); } this.HttpResponse = httpResponse; this.Tag = tag; } /// &lt;summary&gt; /// Write the closing tag /// &lt;/summary&gt; public virtual void EndContainer() { this.Dispose( true ); } #region IDisposable Members /// &lt;summary&gt; /// Write the closing tag /// &lt;/summary&gt; public void Dispose() { this.Dispose( true ); GC.SuppressFinalize( this ); } protected virtual void Dispose( bool disposing ) { if (!this.Disposed) { this.Disposed = true; this.HttpResponse.Write( string.Format( "&lt;/{0}&gt;", this.Tag ) ); } } #endregion } </code></pre> http://stackoverflow.com/questions/1909981/software-development-team-meetings/1910050#1910050 4 Answer by tvanfosson for Software development team meetings tvanfosson 2009-12-15T20:10:08Z 2009-12-15T20:10:08Z <p>Think of it as an opportunity to show off what you are doing and learning. Don't think of it merely as a lack of trust on the part of your team leader.</p> <p>I don't think that having some accountability for what you are working on is an onerous burden and it could be helpful. If the team is really focused on improving and helping each other to improve a weekly sounding board seems like a lightweight way of jump starting this process. Eventually, you may want to move on to code reviews as an extension of this.</p> <p>The last thing you want to do is come across as being the person who doesn't want someone looking at their code. That would say to me that you aren't interested in improving or getting feedback on how you could improve. The best programmers are the ones that know they don't know everything and have lots more to learn; they also look to everyone around them for new ideas and constructive criticism.</p> http://stackoverflow.com/questions/1909474/passing-build-timestamp-to-code/1909563#1909563 2 Answer by tvanfosson for Passing build timestamp to code tvanfosson 2009-12-15T18:54:27Z 2009-12-15T18:54:27Z <p>Here's a bit of code that I use to extract the build id from the current assembly at application start. It reads the version number from the assembly, a version designator (dev/qa/blank) from the web config, then constructs a version number string to stuff into the application. This code goes in Global.asax.cs. You can then refer to it in your markup from the Application instance.</p> <pre><code>var webAssembly = Assembly.GetAssembly( typeof(...known class...) ); var designator = WebConfigurationManager.AppSettings["VersionDesignator"]; string version = webAssembly.GetName().Version + designator; this.Application.Add( "Version", version ); </code></pre> <p>Here's an example of how you could use it in an MVC context (sorry I don't have any WebForms examples).</p> <pre><code>&lt;link type="text/css" rel="stylesheet" href="/Content/styles/screen.css?build=&lt;%= this.Application["Version"] %&gt;" /&gt; </code></pre> http://stackoverflow.com/questions/1909441/jquery-keyup-delay/1909478#1909478 0 Answer by tvanfosson for jquery keyup delay? tvanfosson 2009-12-15T18:41:22Z 2009-12-15T18:41:22Z <p>Take a look at the <a href="http://bassistance.de/jquery-plugins/jquery-plugin-autocomplete/" rel="nofollow">autocomplete</a> plugin. I know that it allows you to specify a delay or a minimum number of characters. Even if you don't end up using the plugin, looking through the code will give you some ideas on how to implement it yourself.</p> http://stackoverflow.com/questions/289845/why-type-equalst1-t2-and-not-the-equality-operator/289880#289880 3 Answer by tvanfosson for Why Type.Equals(t1, t2) and not the equality operator? tvanfosson 2008-11-14T11:56:27Z 2009-12-15T18:35:16Z <p>According to <a href="http://msdn.microsoft.com/en-us/library/215yacb6.aspx" rel="nofollow">this</a>, the VB equality operator does a value comparison, not a reference comparison. Using Type.Equals(t1,t2) forces it to do reference comparison. If t1 and t2 are types, I would think that either would work, but I'm a C# guy so what do I know. I'd probably prefer using the <code>is</code> syntax for known classes and <code>IsInstanceOf</code>, if I don't care about exact type match.</p> <pre><code>Typeof a Is Boolean a.GetType().IsAssignableFrom( b.GetType() ) </code></pre> http://stackoverflow.com/questions/1908325/jquery-ajax-call-to-web-service-producing-empty-response/1908366#1908366 1 Answer by tvanfosson for jQuery AJAX call to web service producing empty response tvanfosson 2009-12-15T15:52:28Z 2009-12-15T15:52:28Z <p>The problem you are running into is the <a href="http://en.wikipedia.org/wiki/Same%5Forigin%5Fpolicy" rel="nofollow">same origin policy</a>. You can't make an AJAX request, unless you use JSONP, to a URL in another domain. JSONP gets around this by loading up a script tag with your URL as the src and having the web server respond with a bit of code wrapped around the JSON result that executes a callback to your javascript method.</p> http://stackoverflow.com/questions/253673/recommended-hash-for-passwords-in-asp-classic/253703#253703 3 Answer by tvanfosson for Recommended hash for passwords in ASP Classic tvanfosson 2008-10-31T14:29:15Z 2009-12-15T12:55:29Z <p>If you are trying to defeat brute force attacks you are better off enforcing some failed attempts window/count rather than relying on the speed of the hashing (or hash comparison) mechanism to make the attack take longer to succeed. Lock out the account after a certain number of failed attempts within the failure window and only let new attempts be made after a significant amount of time has elapsed.</p> <p>This could leave you open to a DOS attack against a well-known (administrative) account, but you could exempt certain accounts from the lockout policy or have an alternate way -- using a security question/answer -- to logon to a locked out account before the reset period has elapsed.</p> <p>[EDIT] To help defeat rainbow attacks -- where the attacker has retrieved your hashed passwords and finds suitable matches that hash to the same values -- consider both using a random salt unique to each user's hashed password and a fixed salt that is part of the algorithm, not the data. For example:</p> <pre><code> testHash = computeHash( user.salt + "98hloj5674" + password ); if (testHash == user.hashedPassword) { valid = true; } </code></pre> <p>This should invalidate the rainbow tables since, even knowing the user's salt and the hash algorithm, the values in the attacker's rainbow tables won't map onto your hashed passwords because of the addition of the fixed salt in the algorithm.</p> <p>With ASP Classic, you'd have to do this in a library instead of on the page to make sure that the user couldn't see your fixed salt.</p> http://stackoverflow.com/questions/1898496/jquery-while-loop-not-waiting-for-animation/1898565#1898565 5 Answer by tvanfosson for jQuery while loop not waiting for animation tvanfosson 2009-12-14T01:56:19Z 2009-12-14T02:26:06Z <p>You might want to create and insert all of the elements first, storing them in an array. Then you can use a recursive function to pop one element off the array and animate it, calling your function on the remaining elements in the callback handler for the animation -- to ensure that the first is complete before the next starts.</p> <pre><code> ... var elems = []; while (statement) { var elem = ...clone and insert element, returning element... elems.push(elem); } animateElems( elems); } function animateElems( elems ) { if (elems.length &gt; 0) { var elem = elems.shift(); $(elem).slideDown( 500, function() { animateElems( elems ); } } } </code></pre> http://stackoverflow.com/questions/1898621/jquery-datatable-plugin-doesnt-seem-to-sort-columns-with-links-properly/1898632#1898632 1 Answer by tvanfosson for jquery datatable plugin doesn't seem to sort columns with links properly tvanfosson 2009-12-14T02:21:38Z 2009-12-14T02:21:38Z <p>Use sSortDataType and sType (with value <code>html</code>) to notate the column as containing HTML and remove it prior to sorting. Docs on the <a href="http://www.datatables.net/usage/columns" rel="nofollow">Columns</a> page.</p> http://stackoverflow.com/questions/1898329/asp-net-mvc-partialview-architectural-question/1898612#1898612 3 Answer by tvanfosson for ASP.NET MVC - PartialView Architectural question tvanfosson 2009-12-14T02:13:44Z 2009-12-14T02:13:44Z <p>I like @Chris Gutierrez's solution, but I would use a property on your ViewModel rather than a named entry in ViewData. You might combine that with a Map on the controller to to save a little code -- the sample assumes that Status.Open maps to 0, and Status.Closed maps to 1.</p> <pre><code>private readonly static string[] StatusViews = new string[] { "OpenPartial", "ClosedPartial" }; ... model.StatusView = StatusViews[(int)Project.Status]; &lt;%= Html.RenderPartial( Model.StatusView ) %&gt; </code></pre> http://stackoverflow.com/questions/1898501/jquery-click-function-not-working-in-ie/1898505#1898505 3 Answer by tvanfosson for jQuery click function not working in IE tvanfosson 2009-12-14T01:37:20Z 2009-12-14T01:45:42Z <p>Try using the <a href="http://docs.jquery.com/Events/change#fn" rel="nofollow">change</a> event instead of the click event. That is, when the selection is changed, then update your user select with the related data. Note, also, the change to get the selected option from the groups select (<code>this</code> will be the select instead of the option).</p> <pre><code>jQuery(document).ready(function() { jQuery("#groups").change(function () { var group = jQuery(this).find(':selected').attr('value'); AJS.safe.ajax({ url: "/plugins/userlookup/userlookup.action", type: "POST", dataType: "json", data: { group: group }, success: function(data) { alert(data); jQuery("#users").empty(); for(var i=0; i &lt; data.userList.length; i++) { var userstr = "&lt;option value=\""+data.userList[i]+"\"&gt;"+data.userList[i]+"&lt;/option&gt;"; jQuery("#users").append(userstr); } } }); }); }); </code></pre> <p>I believe that the click event isn't actually generated in IE for the option elements, it's generated on the select itself. This may be different, though, if you are using a multiselect, though it doesn't appear that you are.</p> http://stackoverflow.com/questions/1898407/getting-selectedvalue-back-from-a-dropdown-in-asp-net-mvc-c-using-entity-frame/1898498#1898498 1 Answer by tvanfosson for Getting SelectedValue back from a DropDown in ASP.NET MVC (C#) using Entity Framework tvanfosson 2009-12-14T01:33:14Z 2009-12-14T01:33:14Z <p>Select elements only post back the actual value of the selected it. In this case, the parameters will be received back at the server/controller as ID (organization) and Name (role). The model you use for the update action should either contain these as properties or your controller action should accept them directly as parameters. The lists on the model won't be repopulated -- and the names don't match in any event.</p> <p>Modify your model by adding:</p> <pre><code>public int ID { get; set; } public string Name { get; set; } </code></pre> <p>with controller action as:</p> <pre><code>public ActionResult Update( UserAccountModel userAccount ) { ... } </code></pre> <p>Note that if there is a validation error, you'll need to repopulate the SelectList properties (reconstituting the menus).</p> http://stackoverflow.com/questions/1898054/has-a-relationship-applies-to-inherited-members/1898064#1898064 0 Answer by tvanfosson for Has-A relationship applies to inherited members? tvanfosson 2009-12-13T22:39:12Z 2009-12-13T22:39:12Z <p>Depends -- I wouldn't replicate the relationship in a UML diagram, but conceptually SportsCar has a(n) engine because it derives from Car.</p> http://stackoverflow.com/questions/1896635/jquery-ui-tabs-dynamically-adding-and-removing-mouseover-event/1896661#1896661 0 Answer by tvanfosson for JQuery UI Tabs - dynamically adding and removing mouseover event tvanfosson 2009-12-13T14:30:54Z 2009-12-13T14:30:54Z <p>Try this. It will add a mouseover handler to all of the list elements in the tab strip when the box is checked and remove it when it is unchecked.</p> <pre><code> $("#chkbEnableMouseOver").change(function () { if (($("#chkbEnableMouseOver").is(":checked"))){ $('#tabs &gt; ul &gt; li').bind('mouseover', function() { ... do something on mouseover }); } else{ $('#tabs &gt; ul &gt; li').unbind('mouseover'); } }); </code></pre> http://stackoverflow.com/questions/1896541/where-can-i-find-free-playing-card-images-for-use-in-creating-games/1896591#1896591 2 Answer by tvanfosson for Where can I find free playing card images for use in creating games? tvanfosson 2009-12-13T13:57:46Z 2009-12-13T13:57:46Z <p>Using my <a href="http://www.google.com/search?q=free+playing+card+image" rel="nofollow">Google foo</a>:</p> <ul> <li><a href="http://freeware.esoterica.free.fr/html/freecards.html#pl" rel="nofollow">http://freeware.esoterica.free.fr/html/freecards.html#pl</a></li> <li><a href="http://thehouseofcards.com/card%5Fimages.html" rel="nofollow">http://thehouseofcards.com/card_images.html</a></li> <li><a href="http://www.fontriver.com/font/playing%5Fcards/" rel="nofollow">http://www.fontriver.com/font/playing_cards/</a></li> </ul> http://stackoverflow.com/questions/1896489/jquery-select-all-except/1896537#1896537 1 Answer by tvanfosson for JQuery "select all except" tvanfosson 2009-12-13T13:43:04Z 2009-12-13T13:43:04Z <p>Using <a href="http://docs.jquery.com/Traversing/children#expr" rel="nofollow">children()</a> on the table selector will select only the direct children. You can filter this using your not selector.</p> <pre><code>$(tableSelector).children(':not(thead)').remove(); </code></pre> http://stackoverflow.com/questions/1927662/jquery-draggable-how-do-i-create-a-new-draggable-div-on-the-fly-that-can-then-b/1927790#1927790 Comment by tvanfosson on Jquery Draggable - How do I create a new draggable div on the fly that can then be dragged? tvanfosson 2009-12-18T14:45:32Z 2009-12-18T14:45:32Z Yep -- it appends it as the last element in the #person1 container. http://stackoverflow.com/questions/1919155/jquery-ui-dialog-adding-elements-next-to-a-button/1919243#1919243 Comment by tvanfosson on jQuery UI Dialog, adding elements next to a button tvanfosson 2009-12-18T02:55:30Z 2009-12-18T02:55:30Z Sorry -- .ui-dialog-buttonpane or .ui-dialog-buttonpane &gt; button:first http://stackoverflow.com/questions/475984/tablename-in-linq/476002#476002 Comment by tvanfosson on TableName in Linq tvanfosson 2009-12-17T19:23:42Z 2009-12-17T19:23:42Z Use reflection to look for the properties on the type of the IQueryable object that have a ColumnAttribute, then you can get the property name from each of those properties and construct a list. The column attribute will also have information on the actual database column that it maps to. http://stackoverflow.com/questions/1921701/how-to-copy-list-to-array/1921728#1921728 Comment by tvanfosson on How to copy List to Array tvanfosson 2009-12-17T14:30:15Z 2009-12-17T14:30:15Z I guess I'm showing my age. :-) http://stackoverflow.com/questions/1915333/c-web-application-event-handling/1915359#1915359 Comment by tvanfosson on C# web application event handling tvanfosson 2009-12-17T12:54:20Z 2009-12-17T12:54:20Z I don't think you understood his question. You answer seems to be about how to <b>change focus</b>. He wants to do some validation when an element <b>loses focus</b>. http://stackoverflow.com/questions/1914520/linq-select-different-projects-same-code-different-results Comment by tvanfosson on LINQ Select: different projects same code different results tvanfosson 2009-12-16T13:04:01Z 2009-12-16T13:04:01Z @Fabian - it's the property names that are different, not the data. http://stackoverflow.com/questions/1914520/linq-select-different-projects-same-code-different-results Comment by tvanfosson on LINQ Select: different projects same code different results tvanfosson 2009-12-16T13:03:30Z 2009-12-16T13:03:30Z Is it possible that the other code uses different capitalization in the anonymous object constructor? http://stackoverflow.com/questions/1914403/microsoft-net-intermediate-code-in-linux-or-mac Comment by tvanfosson on Microsoft.Net intermediate code in linux or Mac tvanfosson 2009-12-16T12:37:56Z 2009-12-16T12:37:56Z The way SO works is you ask question, people answer. You vote up helpful answers using the arrows next to the vote count on the answer. You accept the best, most helpful answer using the check mark below the vote count. Asking questions without rewarding those who help you by voting/accepting an answer is abuse of the community. http://stackoverflow.com/questions/1910084/start-and-end-divs-using-two-controls-aps-net-mvc/1910112#1910112 Comment by tvanfosson on Start and End Divs Using Two Controls - Aps.net mvc tvanfosson 2009-12-15T21:59:17Z 2009-12-15T21:59:17Z That would be true, AFAIK. I never open the design view. http://stackoverflow.com/questions/1910084/start-and-end-divs-using-two-controls-aps-net-mvc/1910112#1910112 Comment by tvanfosson on Start and End Divs Using Two Controls - Aps.net mvc tvanfosson 2009-12-15T20:50:10Z 2009-12-15T20:50:10Z Nope. Missed that part of your question. It's &quot;compatible&quot; with the design view, but you won't be able to see the effect since the code isn't generated until runtime. http://stackoverflow.com/questions/1909981/software-development-team-meetings/1910050#1910050 Comment by tvanfosson on Software development team meetings tvanfosson 2009-12-15T20:23:50Z 2009-12-15T20:23:50Z Why is that bothersome? I love showing off what I've been working on. The bigger problem would be getting me to limit myself to 15 minutes. http://stackoverflow.com/questions/289845/why-type-equalst1-t2-and-not-the-equality-operator/289880#289880 Comment by tvanfosson on Why Type.Equals(t1, t2) and not the equality operator? tvanfosson 2009-12-15T18:36:12Z 2009-12-15T18:36:12Z You're probably right -- I think I was originally thinking exact type equality (and simply put in an extra GetType()). AssignableFrom works better for non-exact matching, though. http://stackoverflow.com/questions/1908323/redirecttorouteresult-passing-parameters Comment by tvanfosson on RedirectToRouteResult passing parameters tvanfosson 2009-12-15T15:50:25Z 2009-12-15T15:50:25Z Could we see your code, please? http://stackoverflow.com/questions/1908313/what-would-i-need-to-know-to-build-a-social-network-from-scratch Comment by tvanfosson on What would I need to know to build a social network from scratch? tvanfosson 2009-12-15T15:49:22Z 2009-12-15T15:49:22Z The first thing you might want to know is the difference between a social network and a web site. Web sites might create/use/capture social networks, but they aren't social networks. http://stackoverflow.com/questions/79129/implementing-profile-provider-in-asp-net-mvc/434793#434793 Comment by tvanfosson on Implementing Profile Provider in ASP.NET MVC tvanfosson 2009-12-14T21:17:08Z 2009-12-14T21:17:08Z Worked like a charm. The only change I made was: public static new ProfileCommon Create( string username ) { return ProfileBase.Create( username ) as ProfileCommon; }