User Matt - Stack Overflow most recent 30 from stackoverflow.com 2009-12-02T05:35:05Z http://stackoverflow.com/feeds/user/17803 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/956343/wcf-nullreferenceexception-on-the-most-basic-wcf-call 0 WCF - NullReferenceException on the most basic WCF call Matt 2009-06-05T14:59:47Z 2009-11-11T03:00:03Z <p>I created my first Silverlight project in VS 2008 Express, and am trying to call a WCF webservice with it. The web service is very simple - I basically just took the default code created when using the WCF Service template from VisualStudio, renamed everything so it wasn't the default "Service1" name, and even removed the complex return type so that the only method on the contract is a method that returns a string.</p> <p>On the Silverlight side, I created a new project from the Silverlight template, selecting the option to also create the containing ASP.NET web project. I've left the web project untouched, and the silverlight app is basically just a button and a text box right now.</p> <p>I kicked off my WCF project in the debugger, and can load up the .svc URL in my browser, and also navigate to the WSDL.</p> <p>Using svcutil.exe, I generated a c# proxy class based on this WSDL. I did <em>not</em> use the /async option, so my proxy class really only has 1 remote method call, the single method GetData(int value) that returns a string.</p> <p>In my Silverlight page code behind, I create a new instance of my service, and then try and call GetData().</p> <pre><code>SliverServiceClient client = new SliverServiceClient (); client.GetData(1234); </code></pre> <p>In my silverlight project, I added the following endpoint/contract configuration to ServiceReferences.ClientConfig</p> <pre><code>&lt;configuration&gt; &lt;system.serviceModel&gt; &lt;bindings&gt; &lt;basicHttpBinding&gt; &lt;binding name="basicHttpBinding_ISliverService" closeTimeout="00:01:00" openTimeout="00:01:00" receiveTimeout="00:15:00" sendTimeout="00:01:00" maxBufferSize="65530" maxReceivedMessageSize="65530" textEncoding="utf-8"&gt; &lt;/binding&gt; &lt;/basicHttpBinding&gt; &lt;/bindings&gt; &lt;client&gt; &lt;endpoint address="http://localhost:8181/SliverService.svc" binding="basicHttpBinding" bindingConfiguration="basicHttpBinding_ISliverService" contract="ISliverService" name="basicHttpBinding_ISliverService" /&gt; &lt;/client&gt; &lt;/system.serviceModel&gt; &lt;/configuration&gt; </code></pre> <p>Note that I'm using basicHttpBinding, since, as I understand it, that's the only WCF binding Silverlight supports.</p> <p>My problem is that during runtime, the call client.GetData(1234) gives me a NullReferenceException. I've confirmed in the debugger that client is <em>not</em> null. If I inspect "client" from the debugger, I can see that the following are <em>not</em> null: ChannelFactory, Endpoint, State. The properties Channel and InnerChannel give an error "could not be evaluated" in the debugger. </p> <p>I notice in the proxy class that GetData(int value) is simply </p> <pre><code>base.Channel.GetData(value); </code></pre> <p>The debugger wont let me step into the proxy class to see if Channel is null - but it seems like that is the <em>only</em> thing that can be, unless it's something from the ServiceModel library.</p> <p>There is no inner exception, and the stack trace is as follows:</p> <pre><code>at System.ServiceModel.Channels.Remoting.RealProxy.Invoke(Object[] args) at proxy_2.GetData(Int32 ) at SliverServiceClient.GetData(Int32 accountID) at Sliver.Page.MakeSliverCall(Object state) at Sliver.Page..ctor() at Sliver.App.Application_Startup(Object sender, StartupEventArgs e) at System.Windows.CoreInvokeHandler.InvokeEventHandler(Int32 typeIndex, Delegate handlerDelegate, Object sender, Object args) at MS.Internal.JoltHelper.FireEvent(IntPtr unmanagedObj, IntPtr unmanagedObjArgs, Int32 argsTypeIndex, String eventName) </code></pre> <p>I do <em>not</em> have the endpoint configuration in the ASP.NET web project web.config (though I did try it with, and got the same error).</p> <p>What on earth am I doing wrong here? It seems like it should be pretty straight forward.</p> http://stackoverflow.com/questions/1602963/jquery-accordion-menu-keep-accordion-menu-open-to-the-page-i-am-on/1603135#1603135 0 Answer by Matt for jQuery accordion menu - keep accordion menu open to the page I am on Matt 2009-10-21T19:42:15Z 2009-10-21T19:52:33Z <p>This is one of the pitfalls of JavaScript navigated websites - your URL doesn't actually point to your page, like a traditional page. It makes it difficult to use normal browser features like bookmarks and the back button. </p> <p>One solution some people seem to be using these days is to store this information after the hash part of the url.</p> <pre><code>http://www.mysite.com/path/index.html#jsPageIndicator </code></pre> <p>By storing information in place of "jsPageIndicator" above, you can then parse it with the JavaScript after $(document).ready(), and have it tell you what page should be loaded. In your case this might be something simple, such as the index of the accordion that has the focus (should be open). </p> <p>You might also want to look at the <a href="http://marketDataEntity" rel="nofollow">jQuery history plugin.</a></p> <p>Or, as Alex points out below, <a href="http://benalman.com/projects/jquery-bbq-plugin" rel="nofollow">benalman.com/projects/jquery-bbq-plugin</a></p> http://stackoverflow.com/questions/1580190/challenges-when-designing-large-websites/1580231#1580231 1 Answer by Matt for Challenges when Designing Large Websites? Matt 2009-10-16T20:29:05Z 2009-10-16T20:39:51Z <p>One of the things experience has taught me (and continues to teach me, as I am slow to learn this lesson apparently), is that more features is not always better. I find it a challenge not to add every single idea that pops into my head. If you head over to meta.stackoverflow.com, you'll notice many threads about feature requests or tweaks, and also how many of them have been turned down. </p> <p>It takes a bit of foresight and a focus on where you want to take the site to turn features down. Improperly adopted "features" can muddle the user experience and dilute the intent of the site. Not to mention bogging it down with buttons, form fields, animations, etc.</p> http://stackoverflow.com/questions/1572483/jquery-mousedown-mousemove/1572688#1572688 1 Answer by Matt for Jquery mousedown + mousemove Matt 2009-10-15T14:23:32Z 2009-10-15T15:08:35Z <p>Updated: </p> <p>So, it looks like if your mouse is no longer over the element on which onmouseup is bound, it won't see the mouse up event. Makes sense, when you stop and think about it, but when the mousedown event happens over the element, we expect, as UI users, for it to know when it was released (even if it isn't over the element).</p> <p>So, to get around this, we actually detect the mouseup on the document level.</p> <pre><code>var clicking = false; $('.selector').mousedown(function(){ clicking = true; $('.clickstatus').text('mousedown'); }); $(document).mouseup(function(){ clicking = false; $('.clickstatus').text('mouseup'); $('.movestatus').text('click released, no more move event'); }) $('.selector').mousemove(function(){ if(clicking == false) return; // Mouse click + moving logic here $('.movestatus').text('mouse moving'); }); </code></pre> <p>I tried this out on jsbin, and it seems to work. Check it out here: <a href="http://jsbin.com/icuso" rel="nofollow">http://jsbin.com/icuso</a>. To edit it (see the JS and HTML), just tag "edit" on the end of the URL. <a href="http://jsbin.com/icuso/edit" rel="nofollow">http://jsbin.com/icuso/edit</a>.</p> http://stackoverflow.com/questions/1572209/does-jquery-live-use-setinterval/1572405#1572405 6 Answer by Matt for Does jQuery live use setInterval? Matt 2009-10-15T13:34:04Z 2009-10-15T13:34:04Z <p>Based on <a href="http://www.thefutureoftheweb.com/blog/jquery-live-events" rel="nofollow">this</a> blog as a resource, it appears that jQuery.live() works by attaching the events to the document. Then, when an event is triggered (such as by a click), the event bubbles up to the document level - at which point it is compared against all the live event handlers. If it matches a live event handler, it fires the event for it.</p> http://stackoverflow.com/questions/1524750/what-is-your-favourite-cleverly-written-functional-code/1551144#1551144 28 Answer by Matt for What is your favourite cleverly written functional code? Matt 2009-10-11T16:52:57Z 2009-10-13T12:47:00Z <p>My "aha!" moment with JavaScript came when I was reading this <a href="http://osteele.com/archives/2006/04/javascript-memoization" rel="nofollow">memoization</a> blog post. The relevant functional code, from that post was:</p> <pre><code>Bezier.prototype.getLength = function() { var length = ... // expensive computation this.getLength = function(){return length}; return length; } </code></pre> <p>Basically, the function overwrites itself with the answer after the first computation, make all subsequent calls memoized.</p> <p>It was at this point that I realized how all my previous ill-conceived notions of JS were founded in ignorance. And it was at this point that I realized the true power of its functional aspects.</p> http://stackoverflow.com/questions/1555503/onchange-javascript-variable/1555568#1555568 1 Answer by Matt for onchange javascript variable Matt 2009-10-12T16:30:36Z 2009-10-12T16:30:36Z <p>One option is to wrap your data into a heavier object.</p> <pre><code>var Watching = function(){ var a; this.getA(){ return a; }; this.setA(value){ a = value; this.trigger('watch'); }; his.watchA(callback){ this.bind('watch', callback); }; }; var obj = new Watching(); obj.watchA(function(){ alert('changed'); }); obj.setA(2); </code></pre> http://stackoverflow.com/questions/1555040/jquery-finding-the-id-of-an-element-in-a-div/1555093#1555093 1 Answer by Matt for Jquery-- Finding the ID of an element in a DIV Matt 2009-10-12T15:01:20Z 2009-10-12T15:01:20Z <p>If you have a direct correspondence between the _1 values on each entity, you simply need to do a "split" on the original modfulePic_1 value, grab the trailing digit, and then grab the corresponding moduleInfo by constructing the selector:</p> <pre><code>$('.module').each(function(el){ var digit = $(el).attr('id').split('_')[1]; var sibling = $('moduleInfo_' + digit, el); $(el).mouseover(function(){ // do something to sibling; }); $(el).mouseout(function(){ // undo something to sibling; }); }); </code></pre> http://stackoverflow.com/questions/1554958/how-different-do-random-seeds-need-to-be/1554993#1554993 1 Answer by Matt for How different do random seeds need to be? Matt 2009-10-12T14:45:44Z 2009-10-12T14:45:44Z <p>Generally speaking, you only seed your random number generator when you <em>need</em> the random numbers to be generated in identical fashion each time through. This is useful when you have a random component to your processing, but need to test it and therefore want it to be consistent between tests. Otherwise, you let the system seed the generator itself.</p> <p>In otherwords, by seeding the random number generator with specific pre-defined seeds, you are actually reducing the randomness of the system as a whole. The random numbers generated when using a seed of 1 are indeed psuedo-randomly different from that with a seed of 2, but a hard coded seed will result in repeated random sequences in each run of the program.</p> http://stackoverflow.com/questions/1554845/am-i-using-the-right-approach-to-monitor-the-tasks-i-want-to-perform-when-a-handl/1554927#1554927 0 Answer by Matt for Am I using the right approach to monitor the tasks I want to perform when a handle is created? Matt 2009-10-12T14:34:10Z 2009-10-12T14:39:43Z <p>You can use the run once method here, mentioned a few times here, but there are a couple problems with that, depending on your use case.</p> <p>1) You may want to re-hook the method later again, and have it run once again. Though I suppose you can reset your bool</p> <p>2) You still have that reference which could end up keeping your class in memory instead of being garbage collected.</p> <p>One option is to use an anonymous method and a closure when you define the event handling:</p> <pre><code>public class Foo { public EventHandler&lt;EventArgs&gt; MyEvent; public void FireEvent() { if(MyEvent != null) MyEvent(this, EventArgs.Empty); } } Foo obj = new Foo(); Action&lt;object, EventArgs&gt; action = new Action&lt;object, EventArgs&gt;((sender, args) =&gt; { // We're now running the event handler, so unsubscribe obj.MyEvent -= new EventHandler&lt;EventArgs&gt;(action); // Do whatever you wanted to do when the event fired. }); obj.MyEvent += new EventHandler&lt;EventArgs&gt;(action); </code></pre> http://stackoverflow.com/questions/1544006/can-multiple-compiled-linq-queries-be-chained-together/1544085#1544085 0 Answer by Matt for Can multiple compiled linq queries be chained together? Matt 2009-10-09T14:22:26Z 2009-10-12T12:48:22Z <p>Admittedly, I am not familiar with CompiledQuery. But, due to the deferred execution nature of LINQ, you can do something like this:</p> <pre><code>var result = dbContext.Users.Where(user =&gt; user.id == id); result = result.Where(user =&gt; user.GroupID == groupID); result = result.Select(user =&gt; user.username); for(String username in result){ ; // do something } </code></pre> <p>The above is of course a simple example. But it can be quite useful when, say, combining different queries together based on a user input (such as an "advanced search" form on a website).</p> http://stackoverflow.com/questions/1551593/should-i-use-multiple-fields-or-json/1551606#1551606 3 Answer by Matt for Should I use multiple fields or JSON? Matt 2009-10-11T19:59:12Z 2009-10-11T19:59:12Z <p>Third alternative, create another table for slots, and have a one-to-many relationship between users and slots. Your business logic would enforce the 100 slot limit.</p> <p>I would recommend against doing the embedded JSON in the database. I'm not sure what DB you are using, but it will likely be very difficult to query the actual slot data for a given user without pulling out and parsing all 100 records.</p> <p>To create a one-to-many relationship, you'll need a second table</p> <pre><code>Slots id (primary key) user_id (mapping to user table) item_id (your slot # you want to store) </code></pre> <p>Now, you can do useful SQL queries like</p> <pre><code>SELECT * FROM Users,Slots WHERE Slots.user_id = Users.id AND Slots.item_id = 12345 </code></pre> <p>Which would give you a list of all users who have slot item #12345</p> http://stackoverflow.com/questions/1551041/how-can-i-make-a-menu-similar-to-nfl-coms-using-jquery/1551092#1551092 2 Answer by Matt for How can I make a menu similar to NFL.com's using jQuery? Matt 2009-10-11T16:27:38Z 2009-10-11T16:27:38Z <p>Something similar can be achieved with jQuery using their <a href="http://docs.jquery.com/UI/Effects/Slide" rel="nofollow">Slide effect</a>. Essentially, each of those submenus will be contained in their own div, each positioned such that when fully visible you get the submenu under the main nav. Then, simply start off with all of those subnav divs hidden, and apply the slide effect to show/hide them during mouseover/mouseout events.</p> http://stackoverflow.com/questions/1550976/subversion-within-web-development-with-centralised-web-server/1550998#1550998 1 Answer by Matt for subversion within web development with centralised web server Matt 2009-10-11T15:47:29Z 2009-10-11T15:57:23Z <p>An SVN export grabs the current version of the repository (or, a specific version if you specify) and drops it onto the local file system such that it is not actually under version control. What this means is that if you do an export, you cannot subsequently do a checkin from that exported directory (because it lacks the .svn folders that are required for talking to the central SVN repo).</p> <p>You can create a post-commit hook that will automate this process for you - such that the web server always has the most recent version out of the repository. It doesn't matter if people "commit at the same time", because SVN treats it as atomic operations. In the end, you would end up with the most recent version on the web server.</p> <p>There can be problems with this - if someone introduces a problem, or a bug, or hadn't done a get latest themselves and therefore screwed something up, then this automatically gets pushed to your webserver. For obvious reasons, this type of thing is avoided for production web servers - but really it boils down to what your own needs are.</p> <p>Depending on your development environment and webserver environment, you might also look into something like <a href="http://www.capify.org/index.php/Capistrano" rel="nofollow">Capistrano</a>. It can be a bear to setup if you work from windows, and almost but impossible if your webserver is also Windows. But, if/when you do get it setup, its wonderful - it'll handle all the "connect via ssh, cd to correct directory, do export" and any other task that you want to automate for a deployment.</p> http://stackoverflow.com/questions/1546196/can-the-view-render-only-first-nth-of-a-string/1546214#1546214 3 Answer by Matt for Can the View render only first nth of a string Matt 2009-10-09T21:45:22Z 2009-10-10T18:59:02Z <pre><code>&lt;%= order.Item.Length &gt; 10 ? order.Item.Substring(0, 7) + "..." : order.Item %&gt; </code></pre> <p>As Dan mentions below, checking for null and pulling out into a helper method is a good idea.</p> <pre><code>public static class StringHelpers { public static string SmartSubstring(string value, int maxLength) { if(String.IsNullOrEmpty(value)) return String.Empty; if(value.Length &gt; maxLength) return value.Substring(0, maxLength -3) + "..."; return value; } } </code></pre> <p>Then just make sure you include this class at the top of your aspx, and you can do:</p> <pre><code>&lt;%= StringHelpers.SmartSubstring(Order.Item, 10) %&gt; </code></pre> http://stackoverflow.com/questions/1548594/javascript-jquery-to-stop-loading-heavy-objects-like-image-and-flash-on-a-webpa/1548645#1548645 1 Answer by Matt for Javascript / jquery to stop loading heavy objects like image and flash on a webpage Matt 2009-10-10T18:04:21Z 2009-10-10T18:04:21Z <p>If you use Firefox (which it appears you do, given the use of Greasemonkey), then I would suggest looking into the AdBlock Plus plugin. I <em>think</em> that it cuts off requests to certain domains or url paths that you specify such that they don't even get loaded (someone please correct me if I am wrong on that assumption). You can find the Firefox plugin/extension/addon (whatever they call it these days) <a href="https://addons.mozilla.org/en-US/firefox/addon/1865" rel="nofollow">here</a>.</p> <p>The main problem with a JavaScript approach (such as jQuery and Greasemonkey) is that those don't start their work on a page until it has finished loading.</p> http://stackoverflow.com/questions/1546040/how-to-use-both-onclick-and-ondblclick-on-an-element/1546126#1546126 3 Answer by Matt for How to use both onclick and ondblclick on an element? Matt 2009-10-09T21:28:01Z 2009-10-09T21:34:07Z <p>If you're getting 2 alerts, it would seem your threshold for detecing a double click is too small. Try increasing 150 to 300ms. </p> <p>Also - I'm not sure that you are guaranteed the order in which click and dblclick are fired. So, when your dblclick gets fired, it clears out the <em>first</em> click event, but if it fires before the second 'click' event, this second event will still fire on its own, and you'll end up with both a double click event firing and a single click event firing.</p> <p>I see two possible solutions to this potential problem:</p> <p>1) Set another timeout for actually firing the double-click event. Mark in your code that the double click event is about to fire. Then, when the 2nd 'single click' event fires, it can check on this state, and say "oops, dbl click pending, so I'll do nothing"</p> <p>2) The second option is to swap your target functions out based on click events. It might look something like this:</p> <pre><code>window.onload = function() { var timer; var el = document.getElementById('testButton'); var firing = false; var singleClick = function(){ alert('Single'); }; var doubleClick = function(){ alert('Double'); }; var firingFunc = singleClick; el.onclick = function() { // Detect the 2nd single click event, so we can stop it if(firing) return; firing = true; timer = setTimeout(function() { firingFunc(); // Always revert back to singleClick firing function firingFunc = singleClick; firing = false; }, 150); } el.ondblclick = function() { firingFunc = doubleClick; // Now, when the original timeout of your single click finishes, // firingFunc will be pointing to your doubleClick handler } } </code></pre> <p>Basically what is happening here is you let the original timeout you set continue. It will always call firingFunc(); The only thing that changes is what firingFunc() is actually pointing to. Once the double click is detected, it sets it to doubleClick. And then we always revert back to singleClick once the timeout expires.</p> <p>We also have a "firing" variable in there so we know to intercept the 2nd single click event.</p> <p>Another alternative is to ignore dblclick events entirely, and just detect it with the single clicks and the timer:</p> <pre><code>window.onload = function() { var timer; var el = document.getElementById('testButton'); var firing = false; var singleClick = function(){ alert('Single'); }; var doubleClick = function(){ alert('Double'); }; var firingFunc = singleClick; el.onclick = function() { // Detect the 2nd single click event, so we can set it to doubleClick if(firing){ firingFunc = doubleClick; return; } firing = true; timer = setTimeout(function() { firingFunc(); // Always revert back to singleClick firing function firingFunc = singleClick; firing = false; }, 150); } } </code></pre> <p>This is untested :)</p> http://stackoverflow.com/questions/1545463/ie6-javascript-hyperlink-not-working/1545487#1545487 1 Answer by Matt for IE6: JavaScript hyperlink not working Matt 2009-10-09T18:54:23Z 2009-10-09T19:09:22Z <p>Try:</p> <pre><code>&lt;a id="asc" href="javascript:void(0)" onclick="displayHomeListings('asc');"&gt; </code></pre> <p>Or</p> <pre><code>&lt;a id="asc" href="#" onclick="displayHomeListings('asc');"&gt; </code></pre> <p>Ideally, your click will still do something sensible if JavaScript is disabled on the users browser. In that case,</p> <pre><code>&lt;a id="asc" href="failsafe.html" onclick="displayHomeListings('asc'); return false;"&gt; </code></pre> <p>Note the return false at the end of the onclick. The stops the href from being visited if the JS succeeds. See <a href="http://stackoverflow.com/questions/134845/href-for-javascript-links-or-javascriptvoid0">this</a> SO post regarding further discussion on that topic.</p> <p>EDIT:</p> <p>Now with your additional information in your question about the hand/cursor:</p> <p>If the cursor is not changing to a hand when hover, this suggests to me you have some sort of invalid HTML, and IE6 is failing to parse the page in the way you expect. Have you tried running it through an HTML validator? Try <a href="http://validator.w3.org/" rel="nofollow">http://validator.w3.org/</a>.</p> http://stackoverflow.com/questions/1544074/delegate-in-javascript/1544109#1544109 1 Answer by Matt for delegate in javascript Matt 2009-10-09T14:25:42Z 2009-10-09T14:25:42Z <p>JavaScript does not actually require you to pass all the parameters to a fucntion. Or any parameters. Or, you can pass more parameters than the function names in it's signature. </p> <p>If the function defines a parameter, obj, but you just call it like</p> <pre><code>otherfunction(); </code></pre> <p>Then obj is just undefined.</p> http://stackoverflow.com/questions/1543788/fetch-single-item-using-datacontext/1543881#1543881 0 Answer by Matt for Fetch Single Item Using DataContext Matt 2009-10-09T13:46:11Z 2009-10-09T13:52:25Z <pre><code>myDataContext.MyItem.Where(item =&gt; item.MyField == id) .Select(item =&gt; item.Something) .FirstOrDefault(); </code></pre> http://stackoverflow.com/questions/1539724/should-mvc-2-preview-release-be-easily-upgraded-to-beta-when-its-released/1539768#1539768 2 Answer by Matt for Should MVC 2 - Preview release be easily upgraded to Beta when it's released? Matt 2009-10-08T18:55:03Z 2009-10-08T19:11:24Z <p>There is always a chance of a breaking change when using preview and beta software. If you want to use MVC 2 Preview, you need to accept the fact that there might be some work in your future to make your project compatable with the Beta, RC, and then Final releases. It won't necessarily break, but the earlier in the release schedule (such as a preview instead of a beta) the greater the chances are you'll have to make changes to your code as they move forward.</p> http://stackoverflow.com/questions/1538450/running-a-script-based-on-a-dynamically-generated-dom-element/1538536#1538536 5 Answer by Matt for Running a script based on a dynamically generated DOM element Matt 2009-10-08T15:25:24Z 2009-10-08T15:25:24Z <p>Barring the DOM mutation events that Reinis mentions, I can think of three options:</p> <p>1) If you are wanting to simply have event handling on the new elements, you can use <a href="http://docs.jquery.com/Events/live" rel="nofollow">jQuery Live</a></p> <p>2) You can use setTimeout to periodically inspect the DOM for new elements.</p> <p>3) If you feel like diving into the third party code (for understanding, not direct modification), you can then provide a functional override that notifies you, explicitly, when their function executes</p> <pre><code>var oldFunc = thirdParty.theirFunc; thirdParty.theirFunc = function(){ oldFunc(); // alert myself of the change. myDomChangedFunction(); }; </code></pre> <p>This way you aren't actually modifying their source directly, just functionally :)</p> http://stackoverflow.com/questions/1538133/jquey-tool-pluging-for-dynamic-controls/1538236#1538236 0 Answer by Matt for jQuey tool pluging for dynamic controls Matt 2009-10-08T14:38:21Z 2009-10-08T14:38:21Z <p>A google search for jquery and tooltip gave me this: <a href="http://bassistance.de/jquery-plugins/jquery-plugin-tooltip/" rel="nofollow">http://bassistance.de/jquery-plugins/jquery-plugin-tooltip/</a></p> http://stackoverflow.com/questions/1537832/select-option-always-select/1537897#1537897 2 Answer by Matt for Select option always select Matt 2009-10-08T13:45:48Z 2009-10-08T13:45:48Z <p>As others have mentioned, you have the (re)select the option every time they change it. But another important thing to note is that whatever this form is being used for (such as server side data processing) needs to know this rule to. Otherwise, all someone has to do is go to your site, disable javascript, and then choose an option you don't want them to have.</p> http://stackoverflow.com/questions/1533999/javascript-prototype-inheritance/1534286#1534286 0 Answer by Matt for javascript prototype inheritance Matt 2009-10-07T21:24:30Z 2009-10-07T21:44:16Z <p>The thing with prototypes, is that you can do reads all day long from them, and it wont change the underlying structure of what is pointing to what. However, the first time you do an assignment, you are replacing, on <em>that</em> instance, what that property points to.</p> <p>In your case, you didn't actually reassign the prototyped property, you modifed the value of the underlying structure that was found at in that property.</p> <p>What this means is that all objects that share a prototype of A actually <em>share</em> the implementation of A. That means any state carried in A will be found on all instances of B. The moment you do an assignment to that property on an instance of B, you have effectively replaced what that instance (and only that instance) points to (I believe this is due to the fact there is a new property "name" on B that gets hit in the scope chain, before it reaches the "name" implementation on A).</p> <p>EDIT:</p> <p>To give a more explicit example of whats going on:</p> <pre><code>B.prototype = new A(); var obj1 = new B(); </code></pre> <p>Now, the first time we do a read, the intepreter does something like this:</p> <pre><code>obj1.name; </code></pre> <p>Interpreter: "I need property name. First, check B. B does not have 'name', so lets continue down the scope chain. Next up, A. Aha! A has 'name', return that"</p> <p>However, when you do a write, the interpreter doesn't actually care about the inherited property.</p> <pre><code>obj1.name = "Fred"; </code></pre> <p>Interpreter: "I need to assign to property 'name'. I'm within the scope of this <em>instance</em> of B, so assign 'Fred' to B. But I leave everything else farther down the scope chain alone (i.e., A)"</p> <p>Now, next time you do a read...</p> <pre><code>obj1.name; </code></pre> <p>Interpreter: "I need property 'name'. Aha! this <em>instance</em> of B has the property 'name' already sitting on it. Just return that - I don't care about the rest of the scope chain (i.e. A.name)"</p> <p>So, the first time you write to name, it inserts it as a first class property on the instance, and doesn't care anymore about what is on A. A.name is <em>still there</em>, it's just further down the scope chain, and the JS interpreter doesn't get that far before it found what it was looking for.</p> <p>If "name" had a default value in A (as you have, which is "A"), then you would see this behaviour:</p> <pre><code>B.prototype = new A(); var obj1 = new B(); var obj2 = new B(); obj1.name = "Fred"; alert(obj1.name); // Alerts Fred alert(obj2.name); // Alerts "A", your original value of A.name </code></pre> <p>Now, in the case of your array, you never actually <em>replaced</em> list on the scope chain with a new array. What you did is grab a handle on the array itself, and added an element to it. Hence, all instances of B are affected. </p> <p>Interpreter: "I need to get the 'list' propery, and add an element to it. Checking this instance of B ... nope, does not have a 'list' property. Next in the scope chain: A. Yep, A has 'list', use that. Now, push onto that list"</p> <p>This would <em>not</em> be the case if you did this:</p> <pre><code>obj1.list = []; obj1.push(123); </code></pre> http://stackoverflow.com/questions/1533636/how-can-i-post-same-page-with-ajax-json/1533693#1533693 1 Answer by Matt for How can i post same page with ajax json Matt 2009-10-07T19:32:32Z 2009-10-07T19:32:32Z <p>You need to decorate your method with the [WebMethod] attribute, and it must be static. It <em>might</em> have to be public and return a string as well, not 100% on that though.</p> <pre><code> [WebMethod] public static string f_Bul(string _sSKodu) { Select s = new Select(_sSKodu); } </code></pre> http://stackoverflow.com/questions/1520921/jquery-trigger-event-on-match-of-element-on-page-load/1520958#1520958 1 Answer by Matt for jquery trigger event on match of element on page load Matt 2009-10-05T16:05:27Z 2009-10-05T16:05:27Z <p>I can see 2 possible problems:</p> <p>1) Your selector is wrong. You can confirm this by executing your selector, by itself, in a JavaScript debugger, such as FireBug for Firefox.</p> <p>2) The method fixClassesForIE6() ... is that your method? I do not recognize it as a JQuery method. If it is your method, then this will not work - because you are calling it on the results of the selector, which don't have that method. Instead, try something like:</p> <pre><code>$(document).ready(function() { var elements = $("div.class1.class2"); elements.each(function(){ fixClassesForIE6(this, "a","b"); }); } </code></pre> http://stackoverflow.com/questions/1520539/how-to-prove-that-multithreading-is-working/1520601#1520601 0 Answer by Matt for How to prove that multithreading is working? Matt 2009-10-05T14:56:19Z 2009-10-05T14:56:19Z <p><a href="http://stackoverflow.com/questions/111676/unit-testing-a-multithreaded-application">This post</a> has a nice discussion on unit testing multi-threaded applications.</p> http://stackoverflow.com/questions/1520310/should-senior-developers-learn-f/1520366#1520366 1 Answer by Matt for Should Senior Developers learn F#? Matt 2009-10-05T14:15:48Z 2009-10-05T14:15:48Z <p>F# may not find it's way into your mainstream projects at work, but that does not mean it is not worth learning. As a functional language many developers can stand to learn from F# (or any other functional language, really). It provides an interesting perspective on how to code solutions to problems different from a traditional non-functional OO approach. And this knowledge can translate effectively into how to solve problems with your C# in a different (and sometimes better way) using the "functional" features found in C# - such as anonymous functions and lambdas.</p> http://stackoverflow.com/questions/1520236/how-to-hook-json-response-to-html-form-via-jquery/1520307#1520307 2 Answer by Matt for How to hook json response to html form via jquery? Matt 2009-10-05T14:08:22Z 2009-10-05T14:08:22Z <pre><code>for(var element in json){ for(var attribute in json[element]){ $('#' + element).attr(attribute, json[element][attribute]); } } </code></pre> http://stackoverflow.com/questions/1400935/how-to-setup-routing-for-my-admin-section-in-asp-net-mvc/1406100#1406100 Comment by Matt on How to setup routing for my admin section in ASP.NET MVC? Matt 2009-11-28T19:02:16Z 2009-11-28T19:02:16Z @MrRogers - It really depends on how the two will differ. If the only difference is which and how much data is shown, you would typically keep the same view but let the controller specify which data is to be shown. If the two views are in fact slightly different (such as having edit/delete buttons for admins), you can check for admin status in the view template with a conditional statement. You can set admin status in the ViewData or in the Session. One last option is to pull them out into partials. So, you only have 1 view, list.aspx, but then admin vs regular user are each in partials. http://stackoverflow.com/questions/1681061/jquery-form-validation-problem/1681292#1681292 Comment by Matt on jQuery form validation problem. Matt 2009-11-05T15:45:05Z 2009-11-05T15:45:05Z you make a valid point (though why not disable JS - it's easier and a more common thing than modifying it), but I've considered doing something similar but <i>also</i> validating on the full post. The benefit of validating client side first is you can tell them it's wrong before they've lost the password they entered. http://stackoverflow.com/questions/1676088/javascript-very-strange-behavior-with-assigning-methods-in-a-loop/1676118#1676118 Comment by Matt on JavaScript: Very strange behavior with assigning methods in a loop Matt 2009-11-04T19:48:12Z 2009-11-04T19:48:12Z @Andrey - because Javascript does not have block level scoping, only function level scoping. When you declare a variable in a function, using var, it's scope to that function, even if it is inside a for loop. By doing what meder has above, you create a new scope. http://stackoverflow.com/questions/1676088/javascript-very-strange-behavior-with-assigning-methods-in-a-loop/1676108#1676108 Comment by Matt on JavaScript: Very strange behavior with assigning methods in a loop Matt 2009-11-04T19:44:35Z 2009-11-04T19:44:35Z wow, that so doesn't answer the question http://stackoverflow.com/questions/1625361/replace-some-text-from-any-html-page-before-it-is-displayed Comment by Matt on Replace some text from any HTML page before it is displayed Matt 2009-10-26T15:08:04Z 2009-10-26T15:08:04Z @crescentfresh - you should make that an actual answer. I'd upvote it. http://stackoverflow.com/questions/1625198/jquery-not-working-in-ie Comment by Matt on Jquery not working in IE Matt 2009-10-26T14:41:53Z 2009-10-26T14:41:53Z also, define &quot;won't work&quot; - does the click event not fire? does the load() not load the content? does it give an error? http://stackoverflow.com/questions/1625198/jquery-not-working-in-ie Comment by Matt on Jquery not working in IE Matt 2009-10-26T14:37:27Z 2009-10-26T14:37:27Z which version of IE? http://stackoverflow.com/questions/1603119/bind-handler-to-elements-in-jquery-object-to-affect-children-of-elements Comment by Matt on bind handler to elements in jQuery object to affect children of elements Matt 2009-10-21T20:25:07Z 2009-10-21T20:25:07Z unless I misunderstand your desired behavior, your above example works fine for me in IE8: jsbin.com/axuve/edit#output http://stackoverflow.com/questions/1602963/jquery-accordion-menu-keep-accordion-menu-open-to-the-page-i-am-on/1603135#1603135 Comment by Matt on jQuery accordion menu - keep accordion menu open to the page I am on Matt 2009-10-21T19:51:34Z 2009-10-21T19:51:34Z @Alex - nice! wasn't aware of that one. http://stackoverflow.com/questions/1590962/jquery-not-working-at-all-in-opera Comment by Matt on JQuery not working at all in Opera Matt 2009-10-19T20:38:35Z 2009-10-19T20:38:35Z Is jQuery not working, or just the cycle plugin? The way you phrase it sounds like jQuery, but then the example you give uses a plugin. Do basic jQuery selections work for you? e.g. $('div'); http://stackoverflow.com/questions/1582622/enumeration-of-event-handlers Comment by Matt on Enumeration of event handlers Matt 2009-10-17T22:48:51Z 2009-10-17T22:48:51Z @crescentfresh - I think that quesiton is different. There, they asked how to find out what is actively observing. I believe Joseph here is asking what <i>could</i> an observer be observing. http://stackoverflow.com/questions/1579033/what-could-be-causing-db-submitchanges-to-not-work-in-linq-to-sql/1579088#1579088 Comment by Matt on What could be causing db.SubmitChanges() to not work in linq-to-sql? Matt 2009-10-16T16:45:47Z 2009-10-16T16:45:47Z This bit me once - I'd submit changes, never get an exception, and it would go on its merry way, but never actually make it into the DB. All because I didn't specify, in the table, what my primary key was. http://stackoverflow.com/questions/1574817/best-thing-you-love-and-the-bad-thing-you-hate-about-your-favorite-language Comment by Matt on Best thing you love and the bad thing you hate about your favorite language? Matt 2009-10-15T20:40:15Z 2009-10-15T20:40:15Z @ravi - &quot;I just asked personal opinions of people and not arguments?&quot; many people cannot distinguish between the two. http://stackoverflow.com/questions/1572483/jquery-mousedown-mousemove/1572688#1572688 Comment by Matt on Jquery mousedown + mousemove Matt 2009-10-15T16:04:15Z 2009-10-15T16:04:15Z Gosh - well, I'm stumped! http://stackoverflow.com/questions/1573029/getting-all-combinations-of-pairs-from-a-list-in-ruby/1573045#1573045 Comment by Matt on Getting all combinations of pairs from a list in Ruby Matt 2009-10-15T15:28:37Z 2009-10-15T15:28:37Z Ah, part of 1.9