User Dan Herbert - Stack Overflowmost recent 30 from stackoverflow.com2009-12-12T02:59:12Zhttp://stackoverflow.com/feeds/user/392http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1888521/what-is-the-point-of-defining-access-modifiers/1888596#18885961Answer by Dan Herbert for What is the point of defining Access Modifiers?Dan Herbert2009-12-11T14:55:13Z2009-12-11T14:55:13Z<p>I think the best reason for this is to provide layers of abstraction on your code.</p>
<p>As your application grows, you will need to have your objects interacting with other objects. Having publicly modifiable fields makes it harder to wrap your head around your entire application. </p>
<p>Limiting what you make public on your classes makes it easier to abstract your design so you can understand each layer of your code.</p>
http://stackoverflow.com/questions/1888234/meta-http-equivx-ua-compatible-contentieemulateie7-does-it-really-rend/1888520#18885201Answer by Dan Herbert for <meta http-equiv="X-UA-Compatible" content="IE=EmulateIE7" /> Does it really render page like IE7 in IE8?Dan Herbert2009-12-11T14:45:18Z2009-12-11T14:45:18Z<p>The <code>X-UA-Compatible</code> header, at least in IE8, triggers IE8's IE7 mode. You can simulate the same effect using the developer toolbar in the browser. It is not a perfect emulation of IE7. There are some bugs in the implementation.</p>
<p>According to Microsoft's explanation of the header, it should behave exactly like IE7 when given this header, however at least for this version of Internet Explorer, it is broken just enough that you shouldn't trust it completely.</p>
<p>If your site works in IE7 already and doesn't work in IE8, using IE7 emulation mode may keep you safe for this release of IE. If it doesn't work for you, fixing your site to work in IE7 mode might be faster than truly fixing it for IE8. This assumes you have no other browsers to develop for.</p>
<p>I don't have any tests readily available unfortunately.</p>
http://stackoverflow.com/questions/699185/good-non-intrusive-anti-spam-email-obfuscator4Good non-intrusive anti-spam email obfuscator?Dan Herbert2009-03-30T21:52:33Z2009-12-08T12:14:52Z
<p>I'm trying to come up with a JavaScript email obfuscator to reduce the chance for spam in emails listed on a web site. Right now I've got a JavaScript based obfuscator that uses a combination of HTML encoding & JavaScript to convert an obfuscated email into a normal email transparently. </p>
<p>What I do is this:</p>
<p>Format the "mailto:" part of the href in links to be HTML encoded like:</p>
<pre><code>&#109;&#97;&#105;&#108;&#116;&#111;&#58;
</code></pre>
<p>I also encode the email, replacing the <code>@</code> sign with <code>(a)</code>, so that the email reads something like:</p>
<pre><code>stackoverflow(a)example.com
</code></pre>
<p>I then use some JavaScript to decipher all mailto links which have this <code>(a)</code> sign in the email and convert them to <code>@</code> on page load.</p>
<p>This works fairly well. For people using browsers with JavaScript enabled, they see everything working normally. For people without JavaScript enabled, every mail client I know would consider the email address as invalid, however the user should be able to infer what is needed to correct the symbol.</p>
<p>I was wondering if there was any better (less intrusive (or at best, not very intrusive) but more spammer resistant) way of obfuscating emails on a web page.</p>
<p>As with any type of obfuscation, if a human or computer can easily de-obfuscate it, then a spammer could easily do the same. Because of this, I'm not expecting a foolproof obfuscation, however I was curious to see what other suggestions were out there. Searching Google didn't reveal any solutions that I consider better than my current solution. I was wondering if there were any other good alternatives.</p>
http://stackoverflow.com/questions/1816152/jquery-plugin-get-reference-to-passed-object/1816241#18162411Answer by Dan Herbert for jQuery: plugin - get reference to passed objectDan Herbert2009-11-29T18:08:24Z2009-11-29T18:08:24Z<p>I think you're a bit confused with how jQuery plugins work. A jQuery plugin allows you to perform actions on a jQuery object. It looks like your code creates a custom object, and then tries to "jQuery-ify" it. I don't think your first function even works as valid jQuery. I think it just happens to work because jQuery is good about ignoring invalid arguments. </p>
<p>It would help if I knew what your ultimate end goal was, however I think you might want to try something like this instead:</p>
<p>Your function: </p>
<pre><code>function myListview(div)
{
$(div).initLV();
}
</code></pre>
<p>Your plugin</p>
<pre><code>(function ($) {
$.fn.initLV = function () {
// "this" will be a jQuery object storing your
// div, or whatever else the jQuery object
// contains when it gets called.
alert($("tr", this).length); // works
alert(this.html()); // works
alert(this.find("tr").html());// works
}
})(jQuery);
</code></pre>
http://stackoverflow.com/questions/1814829/how-to-master-document-object-model-dom/1814850#18148502Answer by Dan Herbert for How to master Document Object Model (DOM) ?Dan Herbert2009-11-29T06:44:43Z2009-11-29T06:44:43Z<ol>
<li><p><em>So how does one master DOM?</em><br>
This is almost as general as saying "How does one master programming?", but I'll give it a shot.</p>
<p>Practice is key. You can't just read a few books and become good with it. You need practice, and experience to know what exactly is going on when you do different things, and how different browsers interpret what you're doing. </p>
<p>Of course, there are things you can do, one is to start taking tutorials at <a href="http://www.w3schools.com/" rel="nofollow">W3 Schools</a> (check out JavaScript & HTML DOM in left menu). Also, check out <a href="http://www.quirksmode.org/compatibility.html" rel="nofollow">quirksmode.org's compatibility tables</a> so you can see what is supported in the DOM. Blogs are a great help, too. <a href="http://ejohn.org/blog/" rel="nofollow">John Resig's blog</a> (creator of jQuery) is a good resource for some more advanced DOM techniques. Taking a look into how JavaScript libraries' code to see how they do things. This will give you some ideas as to where to start. Of course, you need to have some knowledge & understanding of the DOM for this to be useful, first. The <a href="http://ejohn.org/blog/the-dom-is-a-mess/" rel="nofollow">DOM is a mess</a>, so it can take lots of time and patience to really master it. </p>
<p>You'll need to master the following, in a cross browser way, which is why it's much better to use an already written framework.</p>
<ul>
<li>DOM manipulation</li>
<li>Event handling</li>
<li>AJAX requests<br>
.</li>
</ul></li>
<li><p><em>Will understanding DOM be of more help when using Javascript libraries?</em><br>
<strong>Yes.</strong> JavaScript libraries are great, but you can do some very unfavorable things in JavaScript frameworks if you don't know what they framework is (essentially) doing behind the scenes. For example, jQuery selectors are designed to traverse the DOM in a specific way. If you don't understand how jQuery traversal works, it can have significant performance implications depending on your circumstances.</p></li>
<li><em>When not using libraries, what benefits does one have by understanding DOM?</em><br>
Well, when not using a JavaScript library, you have to have a pretty solid understanding of the DOM to do anything in JavaScript. It can be hard to develop something that is maintainable that works across all browsers if you aren't comfortable with everything in the DOM. </li>
</ol>
<p>Of course, <a href="http://stackoverflow.com/questions/863603/when-should-i-use-a-javascript-framework-library">you should almost never do development without a JavaScript framework</a>. Pick one that meets your needs and master it. It's much better than trying to <a href="http://www.codinghorror.com/blog/archives/001145.html" rel="nofollow">re-invent the wheel (unless you plan on learning more about wheels)</a>.</p>
http://stackoverflow.com/questions/1811357/problems-getting-the-values-of-a-select-element/1811381#18113810Answer by Dan Herbert for problems getting the values of a select element- Dan Herbert2009-11-28T02:46:45Z2009-11-28T04:29:53Z<p><code><select /></code> tags have no <code>value</code> attribute. Instead, you should use the <a href="http://www.quirksmode.org/js/forms.html" rel="nofollow"><code>selectedIndex</code> or the <code>value</code></a> <em>property</em>.</p>
<pre><code>var selectElem = document.getElementById("recommendFriend");
var user = selectElem.value;
</code></pre>
<p>I can't remember if all modern browsers support the <code>value</code> property (I'm pretty certain they do), but if not, then do this:</p>
<pre><code>var selectElem = document.getElementById("recommendFriend");
var selectedIndex = selectElem.selectedIndex;
var user = selectElem.options[selectedIndex].value;
</code></pre>
http://stackoverflow.com/questions/411688/how-to-extend-jquery-to-make-it-easier-to-retrieve-the-tagname/411692#41169213Answer by Dan Herbert for How to extend jQuery to make it easier to retrieve the tagNameDan Herbert2009-01-04T21:19:19Z2009-11-24T18:42:23Z<p>Try this instead:</p>
<pre><code>$.fn.tagName = function() {
return this.get(0).tagName;
}
alert($('#testElement').tagName());
</code></pre>
<p>To explain a little bit more of why your original example didn't work, the <code>each()</code> method will always return the original jQuery object (unless the jQuery object itself was modified). To see what is happening in each with your code, here is some pseudocode that shows how the <code>each()</code> method works:</p>
<pre><code>function each(action) {
for(var e in jQueryElements) {
action();
}
return jQueryObject;
}
</code></pre>
<p>This is not how <code>each()</code> really gets implemented (by a long shot probably), but it is to show that the return value of your <code>action()</code> function is ignored.</p>
http://stackoverflow.com/questions/1776447/detect-when-user-clicks-link-but-aborts/1776461#17764611Answer by Dan Herbert for Detect when user clicks link, but aborts Dan Herbert2009-11-21T19:26:17Z2009-11-21T20:03:51Z<p>This won't work for submit buttons. Once the user clicks "submit", the request has been posted to the server. Once that happens, the action has been performed. The best you could do in that case is stop the user from seeing the <em>response</em> of their action, however the action would still be performed. </p>
<p>Also, the only way to stop the user from navigating to another page once another request has been started would be to redirect the user back to the page they came from. In general, cancelling out of the request is just a plain Bad Idea™</p>
<p>For forms, another option would be to use AJAX for all form submissions. AJAX requests can be cancelled, so you could use this to your advantage, although it makes things more complicated and harder to deal with.</p>
<p>If you still want to go through with this, knowing the implications though, you can easily do this <a href="http://stackoverflow.com/questions/863603/when-should-i-use-a-javascript-framework-library">with a JavaScript framework</a> like <a href="http://jquery.com/" rel="nofollow">jQuery</a>, <a href="http://developer.yahoo.com/yui/" rel="nofollow">YUI</a>, <a href="http://www.dojotoolkit.org/" rel="nofollow">Dojo</a>, <a href="http://mootools.net/" rel="nofollow">MooTools</a>, <a href="http://www.extjs.com/" rel="nofollow">ExtJS</a>, or <a href="http://code.google.com/closure/library/docs/gettingstarted.html" rel="nofollow">Closure</a>. </p>
<p>Here is an example of how to do this in jQuery. As I mentioned, you can't stop a request once it has started without refreshing the page the user is on (to stop the current page load) so I have omitted that part from this example.</p>
<pre><code>$().ready(function() {
function showLoading(){
$loadingOverlay = $('<div id="loadingOverlay"></div>');
$loadingAnimation = $('<div id="loadingAnimation">Loading...</div>');
$("body").prepend($loadingAnimation).prepend($loadingOverlay);
}
$("a[href]").click(showLoading);
$("form").submit(showLoading);
});
</code></pre>
<p>To add an animated gif in the loading box, replace the text "Loading..." with an <code><img /></code> tag pointing to the loading gif of your choice. A live demo of this can be seen here: <a href="http://jsbin.com/opadi" rel="nofollow">http://jsbin.com/opadi</a></p>
<p>You'll need this CSS to go with the code above:</p>
<pre><code>#loadingOverlay {
position: absolute;
top: 0px;
left: 0px;
height: 100%;
width: 100%;
z-index: 1000;
background: #000;
filter:alpha(opacity=50);
-moz-opacity:0.5;
-khtml-opacity: 0.5;
opacity: 0.5;
}
#loadingAnimation {
position: absolute;
top: 30%;
left: 50%;
z-index: 1001;
}
</code></pre>
http://stackoverflow.com/questions/1776534/proper-usage-of-floats-for-those-who-love-css-standards/1776551#17765512Answer by Dan Herbert for Proper usage of Floats (For those who love CSS standards)?Dan Herbert2009-11-21T19:49:17Z2009-11-21T19:49:17Z<p>You're doing it right.</p>
<p>You don't need <code>clear: both</code> in your footer because you're <a href="http://www.quirksmode.org/css/clearing.html" rel="nofollow">clearing your floats the "Correct Way"™</a>. Basically, by setting overflow to hidden, you're avoiding the need to clear your floats in your footer. It shouldn't hurt anything by keeping it in there, but I'd take the <code>clear: both</code> out of the footer style rule. It's not needed.</p>
http://stackoverflow.com/questions/1529374/html-onchange-onblur-compatibility/1529397#15293973Answer by Dan Herbert for html onchange /onblur compatibilityDan Herbert2009-10-07T03:56:47Z2009-11-21T17:11:07Z<p>All browsers should support these events pretty decently if you're only using them in text boxes. If you check out the <a href="http://www.quirksmode.org/dom/events/index.html" rel="nofollow">QuirksMode event compatibility tables</a>, you'll see that IE has some issues with the change event in radio buttons and check boxes.</p>
<p>If you're not very familiar with JavaScript events in browsers, you'll find that the event model is a mess thanks to the fact that IE decided to do things differently from the standard. To overcome this problem, <a href="http://stackoverflow.com/questions/863603/when-should-i-use-a-javascript-framework-library">you should be using a JavaScript framework</a> like <a href="http://jquery.com/" rel="nofollow">jQuery</a>, <a href="http://developer.yahoo.com/yui/" rel="nofollow">YUI</a>, <a href="http://www.dojotoolkit.org/" rel="nofollow">Dojo</a>, <a href="http://mootools.net/" rel="nofollow">MooTools</a>, <a href="http://www.extjs.com/" rel="nofollow">ExtJS</a>, or <a href="http://code.google.com/closure/library/docs/gettingstarted.html" rel="nofollow">Closure</a>. These frameworks smooth out the differences so you'll (almost) never have to deal with the differences & bugs in the different browsers. There is <a href="http://www.codinghorror.com/blog/archives/001163.html" rel="nofollow">a great article on CodingHorror</a> explaining why you should consider using a JavaScript framework if you plan on using JavaScript in your site that you should read if you're curious as to <em>why</em> you should use a JavaScript framework.</p>
<p>Also, if you're unfamiliar with browser events entirely, make sure you understand <a href="http://stackoverflow.com/questions/785099/what-is-the-difference-between-onblur-and-onchange-atrribute-in-html">the difference between onchange and onblur</a>.</p>
http://stackoverflow.com/questions/429478/do-i-need-to-dispose-a-web-service-reference-in-asp-net/429499#4294996Answer by Dan Herbert for Do I need to dispose a web service reference in ASP.NET?Dan Herbert2009-01-09T20:03:55Z2009-11-21T17:06:46Z<p><strong>UPDATE:</strong><br>
A much better alternative to worrying about disposing your web services would be to keep only a single instance of each web service, using a <a href="http://msdn.microsoft.com/en-us/library/ms998426.aspx" rel="nofollow">singleton pattern</a>. Web services are stateless, so they can be shared between connections on a web server.</p>
<p>Here is an example of a Web Service class you can use to hold references to your web service instances. This singleton is lazy and thread-safe. It is advised that if you make your singletons lazy, they are also kept thread safe by following the same logic. To learn more about how to do this, read Microsoft's documentation on <a href="http://msdn.microsoft.com/en-us/library/ms998558.aspx" rel="nofollow">Implementing Singletons</a>.</p>
<pre><code>public static class WS
{
private static object sync = new object();
private static MyWebService _MyWebServiceInstance;
public static MyWebService MyWebServiceInstance
{
get
{
if (_MyWebServiceInstance== null)
lock (sync)
if (_MyWebServiceInstance== null)
_MyWebServiceInstance= new object();
return _MyWebServiceInstance;
}
}
}
</code></pre>
<p>And then when you need to access your web service, you can do this:</p>
<pre><code>WS.MyWebServiceInstance.MyMethod(...)
</code></pre>
<p>or</p>
<pre><code>var ws = WS.MyWebServiceInstance;
ws.MyMethod(...)
</code></pre>
<p><strong>note:</strong> For anyone who stumbled upon this answer, view the history of this post to see my previous answer, which included a simple benchmark test for web service performance hits when calling <code>Dispose()</code>.</p>
http://stackoverflow.com/questions/1737975/ie7-js-vs-whateverhover-htc-vs-son-of-suckerfish-js/1753381#17533811Answer by Dan Herbert for IE7.js vs Whatever:hover.htc vs Son of suckerfish.js ?Dan Herbert2009-11-18T03:03:20Z2009-11-18T03:03:20Z<p>Well according to the feature list, IE7.js adds support for the <code>:hover</code> pseudo-selector for all elements in IE6. This means that Whatever:Hover htc is not needed since it provides the same type of functionality.</p>
<p>As far is whether you'll need too keep the Suckerfish JavaScript for your CSS menus or not, I don't know. However, since all of the features needed for CSS menus to work are included with IE7.js, I don't think it would be necessary.</p>
<p>Your best option would be to remove those 2 scripts from your site and see what happens. </p>
<p>There are so many edge cases that eventually these scripts designed to pick up the slack for IE6 will miss some small area that was somehow missed. You'll need to do good QA no matter what option you go with. If you use <strong>just</strong> IE&.js, at least it will be easy to narrow down bugs to 1 JavaScript file, rather than 2-3.</p>
http://stackoverflow.com/questions/1711125/how-many-of-you-are-moving-to-html-5/1711163#17111638Answer by Dan Herbert for How many of you are moving to HTML 5?Dan Herbert2009-11-10T21:02:55Z2009-11-11T14:09:05Z<p>Well the HTML5 doctype will work with all browsers correctly, including IE6, so I've started using the doctype on all of my sites. It's shorter and therefore easier to remember, and it will always trigger standards mode in browsers.</p>
<pre><code><!DOCTYPE html>
</code></pre>
<p>Since many browsers (by which I mean Internet Explorer) don't support new HTML5 features, I'm still using regular XHTML markup. I figure it will be about 5-8 years before HTML5 will be seriously usable.</p>
<p>...unless <a href="http://code.google.com/chrome/chromeframe/" rel="nofollow">Chrome Frame</a> catches on as a widely used Internet Explorer plugin <code></sarcasm></code>. </p>
<p>Of course, with the market share Google has, they <em>could</em> "trick" users into installing it the same way users have been coerced into installing Flash. They have enough market share of the web that they could (potentially) have some influence. If that's the case, we could see HTML5 become reasonable to use even sooner.</p>
http://stackoverflow.com/questions/1510165/how-can-i-add-remove-or-swap-jquery-validation-rules-from-a-page0How can I add, remove, or swap jQuery validation rules from a page?Dan Herbert2009-10-02T15:14:02Z2009-11-08T18:08:46Z
<p><strong>UPDATE:</strong><br>
I've come up with a solution to this which I've written as <a href="http://stackoverflow.com/questions/1510165/how-can-i-add-remove-or-swap-jquery-validation-rules-from-a-page/1611125#1611125">the accepted answer</a> below.<br>
Another option is to apply validation rules to <strong>all</strong> elements initially, add an "<code>.invalid</code>" class to elements you don't want to validate. Swap this class in & out of elements you want to validate as needed.</p>
<p><hr></p>
<p>I have a form that toggles what input elements are visible. I want to validate <strong>only</strong> the visible elements on the form. </p>
<p>I'm having a hard time getting this to function correctly. I want to disable validators for non-visible elements and I can't seem to figure out the best way to do this. Any insight to what may be wrong with my code, or my approach would be appreciated.</p>
<p>When visibility is toggled, I've tried a few things:</p>
<ul>
<li>Calling <code>$("form").rules("remove")</code> to clear all existing validation rules. This throws an "undefined" JavaScript exception.</li>
<li>Calling <code>$("form").validation(...options...)</code> for the visible elements, hoping this would overwrite the rules. This only allows the first group that is validated to work. The second panel can not be validated.</li>
<li>Unbinding the submit handler before calling the new <code>validation()</code> method. This didn't do what I would have thought. It removes all validation (seemingly) permanently and the form submits without validation.</li>
<li>Clearing out the validation object with <code>$.removeData($('form'), 'validator')</code> before trying to call the validator again. This also doesn't work.</li>
<li>This is in an ASP.NET site, so using multiple <code><form /></code> tags is out of the question since that would break the page.</li>
</ul>
<p>I'm sort of stumped on how I can make this work. You can see a complete working demo of what I have at <a href="http://jsbin.com/ucibe3" rel="nofollow"><code>http://jsbin.com/ucibe3</code></a>, or edit it at <a href="http://jsbin.com/ucibe3/edit" rel="nofollow"><code>http://jsbin.com/ucibe3/edit</code></a>. I've tried to strip it down to <em>just</em> the code that causes the bug.</p>
<p>Here are the key pieces of my code (use above links for complete working page)</p>
<p>HTML: </p>
<pre><code><td id="leftform">
Left Form<br />
Input 1: <input type="text" name="leftform_input1" /><br />
Input 2: <input type="text" name="leftform_input2" /><br />
<input type="submit" name="leftform_submit" value="Submit Left" />
</td>
<td id="rightform" style="visibility:hidden">
Right Form<br />
Input 1: <input type="text" name="rightform_input1" /><br />
Input 2: <input type="text" name="rightform_input2" /><br />
<input type="submit" name="rightform_submit" value="Submit Right" />
</td>
</code></pre>
<p>JavaScript:</p>
<pre><code>$('#toggleSwitch').click(function() {
if ($('#leftform').css("visibility") !== "hidden") {
$('#leftform').css("visibility", "hidden");
$('#rightform').css("visibility", "visible");
$('form').validate({
rules: {
rightform_input1: { required: true },
rightform_input2: { required: true }
},
messages: {
rightform_input1: "Field is required",
rightform_input2: "Field is required"
}
});
} else {
$('#rightform').css("visibility", "hidden");
$('#leftform').css("visibility", "visible");
$('form').validate({
rules: {
leftform_input1: { required: true },
leftform_input2: { required: true }
},
messages: {
leftform_input1: "Field is required",
leftform_input2: "Field is required"
}
});
}
});
</code></pre>
http://stackoverflow.com/questions/1510165/how-can-i-add-remove-or-swap-jquery-validation-rules-from-a-page/1611125#16111250Answer by Dan Herbert for How can I add, remove, or swap jQuery validation rules from a page?Dan Herbert2009-10-23T02:28:57Z2009-11-08T18:08:46Z<p>This uses a feature of the validator that is not well documented in the API (and by this I mean it isn't documented at all), however since it is a fundamental part of how the validator works, it is not likely to be removed even if it is undocumented.</p>
<p>Once you've initialized the jQuery validator, you can get access to the validator object again by calling the <code>validate()</code> method on the form object you applied the validator to. This validator object has a <code>settings</code> property, which stores the default settings, combined with the settings you applied to it in initialization. </p>
<p>Assuming I initialize the validator like this:</p>
<pre><code>$('form').validate({
rules: {
leftform_input1: { required: true },
leftform_input2: { required: true }
},
messages: {
leftform_input1: "Field is required",
leftform_input2: "Field is required"
}
});
</code></pre>
<p>I can then get those exact settings out of the validator by doing the following:</p>
<pre><code>var settings = $('form').validate().settings;
</code></pre>
<p>I can then easily work with this settings object to add or remove validators for the form.</p>
<p>This is how you would remove validation rules:</p>
<pre><code>var settings = $('form').validate().settings;
delete settings.rules.rightform_input1;
delete settings.messages.rightform_input1;
</code></pre>
<p>And this is how you would add validation rules:</p>
<pre><code>var settings = $('form').validate().settings;
settings.rules.leftform_input1 = {required: true};
settings.messages.leftform_input1 = "Field is required";
</code></pre>
<p><hr></p>
<p>Here is a working solution for the scenario in my question. I use jQuery's <code>extend()</code> method to overwrite the <code>rules</code> and <code>messages</code> properties of the <code>validate</code> object, which is how I toggle between the two panels.</p>
<pre><code>$('#toggleSwitch').click(function() {
var settings = $('form').validate().settings;
var leftForm = $('#leftform');
var rightForm = $('#rightform');
if (leftForm.css("visibility") !== "hidden") {
leftForm.css("visibility", "hidden");
rightForm.css("visibility", "visible");
$.extend(settings, {
rules: {
rightform_input1: { required: true },
rightform_input2: { required: true }
},
messages: {
rightform_input1: "Field is required",
rightform_input2: "Field is required"
}
});
} else {
rightForm.css("visibility", "hidden");
leftForm.css("visibility", "visible");
$.extend(settings, {
rules: {
leftform_input1: { required: true },
leftform_input2: { required: true }
},
messages: {
leftform_input1: "Field is required",
leftform_input2: "Field is required"
}
});
}
});
</code></pre>
http://stackoverflow.com/questions/1695170/jquery-how-can-i-replace-a-tag-without-disturbing-the-content/1695200#16952007Answer by Dan Herbert for JQuery: How can I replace a tag without disturbing the content?Dan Herbert2009-11-08T02:53:44Z2009-11-08T17:59:08Z<p>The easiest way to do this would be to do something like this:</p>
<pre><code>$("#myDiv").replaceWith('<span id="mySpan">' + $("#myDiv").html() + "</span>");
</code></pre>
<p><strong>However,</strong> that falls apart when you realize that you'll lose all event subscribers on any elements inside your <code><div /></code>. A better way to do this is to <em>move</em> the contents to a new <code><span /></code> tag just before the <code><div /></code> tag, then remove the <code><div /></code>, like this:</p>
<pre><code>var yourDiv = $("#myDiv");
var yourSpan = $('<span id="mySpan"></span>');
yourDiv.before(yourSpan);
yourSpan.append(yourDiv.children());
yourDiv.remove();
</code></pre>
<p>This will "change" the wrapping tag without losing the actual elements inside of your <code><div /></code> tag. All event subscribers should remain on any elements inside of the <code><div /></code>.</p>
http://stackoverflow.com/questions/1695376/msie-and-addeventlistener-problem-in-javascript/1695387#16953870Answer by Dan Herbert for MSIE and addEventListener Problem in Javascript?Dan Herbert2009-11-08T04:45:32Z2009-11-08T04:45:32Z<p>Internet Explorer doesn't support <a href="https://developer.mozilla.org/en/DOM/element.addEventListener" rel="nofollow"><code>addEventListener(...)</code></a> in any form. It has its own completely different event model using the <a href="http://msdn.microsoft.com/en-us/library/ms536343%28VS.85%29.aspx" rel="nofollow"><code>attachEvent</code></a> method. You could use some code like this:</p>
<pre><code>var element = document.getElementById('container');
if (document.addEventListener){
element .addEventListener('copy', beforeCopy, false);
} else if (el.attachEvent){
element .attachEvent('oncopy', beforeCopy);
}
</code></pre>
<p>Although I'd recommend you avoid this whole situation completely and just use a JavaScript framework (such as <a href="http://jquery.com/" rel="nofollow">jQuery</a>, <a href="http://www.dojotoolkit.org/" rel="nofollow">Dojo</a>, <a href="http://mootools.net/" rel="nofollow">MooTools</a>, <a href="http://developer.yahoo.com/yui/" rel="nofollow">YUI</a>, or <a href="http://prototypejs.org/" rel="nofollow">Prototype</a>) and avoid having to worry about the problems completely.</p>
<p>By the way, the third argument in the W3C model of events has to do with the <a href="http://www.quirksmode.org/js/events%5Forder.html" rel="nofollow">difference between bubbling and capturing events</a>. In almost every situation you'll want to handle events as they bubble, not when they're captured. </p>
<p>The only time I've seen it useful to handle events during the "capturing" phase is when using <a href="http://icant.co.uk/sandbox/eventdelegation/" rel="nofollow">event delegation</a> on things like focus events for text boxes, which don't bubble. </p>
http://stackoverflow.com/questions/1694000/select-content-from-jquery-ajax-return-object/1694037#16940371Answer by Dan Herbert for Select content from JQuery ajax return objectDan Herbert2009-11-07T18:55:24Z2009-11-08T04:04:36Z<p><strong>UPDATE</strong> </p>
<p>In response to the comments you've left on other answers, I just want to make sure I understand the situation clearly:</p>
<ul>
<li>You're testing from your localhost, not from the local hard drive (meaning your URL in the browser includes "http://localhost", and not a location on your hard drive.</li>
<li>When you make the AJAX response, <code>alert(...)</code>-ing the result give you null, or some equivalent.</li>
<li>The URL is valid and can be loaded in your browser.</li>
<li>The URL you're requesting is within the same domain as the originating page.</li>
</ul>
<p>If those things are true, then I'd try the following do some troubleshooting: </p>
<ol>
<li>Use Firefox and install Firebug (we'll need this to determine if AJAX requests are failing, and why)</li>
<li>Include <a href="http://getfirebug.com/logging.html" rel="nofollow">some logging</a> in your code using <a href="http://getfirebug.com/console.html" rel="nofollow">Firebug's console</a></li>
<li>Use jQuery's <code>ajax(...)</code> method, and handle failure by including some logging code to see what happened. You may be able to avoid this step if the page you're on doesn't need a visual response for a failed request and you're using Firebug.</li>
</ol>
<p>Here's the code I would use for this:</p>
<pre><code>$.ajax({
url: "http://stackoverflow.com/",
success: function(html) {
var responseDoc = $(html);
// Output the resulting jQuery object to the console
console.log("Response HTML: ", responseDoc);
}
// Handle request failure here
error: function(){
console.log("Failure args: ", arguments);
}
});
</code></pre>
<p>If you post the output of your Firebug logs, it should be easier to figure out the problem and find a solution for you. Firebug also logs <code>XMLHttpRequests</code> so you can see exactly what is being sent to and from the server, and Firebug will change the look of the request if it returns some kind of server error (which is how you could avoid #3 of the things I listed above).</p>
<p><hr></p>
<p>You could use the <code>ajax(...)</code> method, but it would be easier to use <code>get(...)</code> with a callback, like this:</p>
<pre><code>$.get("http://stackoverflow.com", function(html) {
var responseDoc = $(html);
});
</code></pre>
<p><code>responseDoc</code> will be a jQuery object you can use to extract elements from and treat just like you would any other jQuery object. You can extract stuff from the <code>responseDoc</code> and add it into your main document any way you want, using the <a href="http://docs.jquery.com/Manipulation" rel="nofollow">jQuery manipulation</a> methods.</p>
<p>If you need the extra functionality the <code>$.ajax(...)</code> method provides, you would use the following code.</p>
<pre><code>$.ajax({
url: "http://stackoverflow.com/",
success: function(html) {
var responseDoc = $(html);
}
error: function(XMLHttpRequest, textStatus, errorThrown){
// Handle errors here
}
});
</code></pre>
http://stackoverflow.com/questions/422847/are-there-any-free-tools-to-generate-insert-into-scripts-in-ms-sql-server2Are there any free tools to generate 'INSERT INTO' scripts in MS SQL Server?Dan Herbert2009-01-08T01:05:31Z2009-11-07T13:26:33Z
<p>The only thing I don't have an automated tool for when working with SQL Server is a program that can create <code>INSERT INTO</code> scripts. I don't desperately need it so I'm not going to spend money on it. I'm just wondering if there is anything out there that can be used to generate INSERT INTO scripts given an existing database without spending lots of money.</p>
<p>I've searched through SQL Server Management Studio Express with no luck in finding such a feature. If it exists in SSMSE then I've never found it.</p>
http://stackoverflow.com/questions/1689045/can-i-get-the-size-of-a-session-object-in-bytes-in-c/1689155#16891550Answer by Dan Herbert for Can I get the size of a Session object in bytes in c#?Dan Herbert2009-11-06T17:38:51Z2009-11-06T17:38:51Z<p>This is taken almost line-for-line from the "<a href="http://stackoverflow.com/questions/198082/how-to-find-out-size-of-session-in-asp-net-from-web-application">duplicate question</a>" from the first comment in the question.</p>
<pre><code>int totalSessionBytes;
BinaryFormatter b = new BinaryFormatter();
MemoryStream m;
b.Serialize(m, Session["table1"]);
totalSessionBytes = m.Length;
</code></pre>
http://stackoverflow.com/questions/256195/jquery-document-ready-and-updatepanels/256253#25625322Answer by Dan Herbert for jQuery $(document).ready and UpdatePanels?Dan Herbert2008-11-01T23:35:28Z2009-11-06T13:50:02Z<p>An UpdatePanel completely replaces the contents of the update panel on an update. This means that those events you subscribed to are no longer subscribed because there are new elements in that update panel.</p>
<p>What I've done to work around this is re-subscribe to the events I need after every update. I use <code>$(document).ready()</code> for the initial load, then this snippet below to re-subscribe every update. </p>
<pre><code>var prm = Sys.WebForms.PageRequestManager.getInstance();
prm.add_endRequest(function() {
// re-bind your jquery events here
});
</code></pre>
<p>The <code>PageRequestManager</code> is a javascript object which is automatically available if an update panel is on the page. You shouldn't need to do anything other than the code above in order to use it as long as the UpdatePanel is on the page.</p>
<p>If you need more detailed control, this event passes arguments similar to how .NET events are passed arguments <code>(sender, eventArgs)</code> so you can see what raised the event and only re-bind if needed.</p>
<p>Read more about the RequestManager here: <a href="http://www.asp.net/AJAX/Documentation/Live/Tutorials/UpdatePanelClientScripting.aspx" rel="nofollow">http://asp.net/.../UpdatePanelClientScripting.aspx</a> (If using .NET 2.0)</p>
<p>Here is the latest version of the documentation from Microsoft: <a href="http://msdn.microsoft.com/en-us/library/bb383810.aspx" rel="nofollow">msdn.microsoft.com/.../bb383810.aspx</a></p>
<p><hr></p>
<p>One other option you may have, depending on your needs is to use jQuery's <a href="http://docs.jquery.com/Events/live" rel="nofollow"><code>live()</code></a> event subscriber, or the jQuery plugin <a href="http://plugins.jquery.com/project/livequery" rel="nofollow"><code>livequery</code></a>. These methods are more efficient than re-subscribing to DOM elements on every update. Read all of the documentation before you use this approach however, since it may or may not meet your needs. There are a lot of jQuery plugins that would be unreasonable to refactor to use <code>live()</code>, so in those cases, you're better off re-subscribing.</p>
http://stackoverflow.com/questions/65512/which-is-faster-best-select-or-select-column1-colum2-column3-etc23Which is faster/best? SELECT * or SELECT column1, colum2, column3, etc.Dan Herbert2008-09-15T18:38:49Z2009-11-05T16:46:59Z
<p>I've heard that <code>SELECT *</code> is generally bad practice to use when writing SQL commands because it is more efficient to <code>SELECT</code> columns you specifically need.</p>
<p>If I need to <code>SELECT</code> every column in a table, should I use <code>SELECT *</code> or <code>SELECT column1, colum2, column3, etc.</code></p>
<p>Does the efficiency really matter in this case? I'd think <code>SELECT *</code> would be more optimal internally if you really need all of the data, but I say this with no real understanding of databases.</p>
<p>I'm curious to know what the best practice is in this case.</p>
<p><strong>UPDATE:</strong> I probably should specify that the only situation where I would really <em>want</em> to do a <code>SELECT *</code> is when I'm selecting data from one table where I know all columns will always need to be retrieved, even when new columns are added. </p>
<p>Given the responses I've seen however, this still seems like a bad idea and <code>SELECT *</code> should never be used for a lot more technical reasons that I ever though about.</p>
http://stackoverflow.com/questions/1647550/javascript-date-and-json-datetime/1665081#16650811Answer by Dan Herbert for Javascript Date and JSON DateTimeDan Herbert2009-11-03T03:33:54Z2009-11-03T03:33:54Z<p>Use this function taken from the <a href="https://developer.mozilla.org/en/Core%5FJavaScript%5F1.5%5FReference/Global%5FObjects/Date#Example.3a.c2.a0ISO%5F8601%5Fformatted%5Fdates" rel="nofollow">Mozilla Date documentation</a>:</p>
<pre><code>/* use a function for the exact format desired... */
function ISODateString(d){
function pad(n){return n<10 ? '0'+n : n}
return d.getUTCFullYear()+'-'
+ pad(d.getUTCMonth()+1)+'-'
+ pad(d.getUTCDate())+'T'
+ pad(d.getUTCHours())+':'
+ pad(d.getUTCMinutes())+':'
+ pad(d.getUTCSeconds())+'Z'
}
</code></pre>
<p>.NET will have no problem handling an ISO formatted date. You can use <a href="http://msdn.microsoft.com/en-us/library/1k1skd40.aspx" rel="nofollow"><code>DateTime.Parse(...)</code></a> to handle the ISO formatted string.</p>
http://stackoverflow.com/questions/1664951/jquery-getjson-inside-settimeout-timer/1664998#16649980Answer by Dan Herbert for JQuery GetJSON inside SetTimeOut TimerDan Herbert2009-11-03T03:06:47Z2009-11-03T03:06:47Z<p>Two things I noticed you need to fix in your code.</p>
<ul>
<li>The <code>setTimeout()</code> method has some incorrect arguments</li>
<li>Your asynchronous <code>getJSON</code> call creates a race condition between the next timeout and the result of the <code>getJSON</code> method. Do this instead: </li>
</ul>
<p>.</p>
<pre><code>function yourFunction(params) {
jQuery.getJSON("url", {data}, function(data, textStatus){
// handle your JSON results
// Call the timeout at the end of the AJAX response
// This prevents your race condition
setTimeout(function(){
yourFunction(params);
}, 1000);
}
}
setTimeout(function(){
yourFunction(params);
}, 1000);
</code></pre>
http://stackoverflow.com/questions/1656820/gridview-multiple-check-box-column/1657595#16575950Answer by Dan Herbert for gridview multiple check box columnDan Herbert2009-11-01T16:29:30Z2009-11-02T02:45:40Z<p>This will become <strong>much</strong> easier if you use CSS rules for your styling instead of inline styles like you currently have. To do this, change your row style tags to only specify CSS classes, not specific styles, like this:</p>
<pre><code><asp:GridView ID="gvSearch" runat="server" CssClass="gridView">
<%-- ... Your other markup here ... --%>
<AlternatingRowStyle CssClass="altRow" />
<RowStyle CssClass="row" />
<FooterStyle CssClass="footer" />
<PagerStyle CssClass="pager" />
<SelectedRowStyle CssClass="selectedRow" />
<HeaderStyle CssClass="headerRow" />
<EditRowStyle CssClass="editingRow" />
</asp:GridView>
</code></pre>
<p>Then you can apply the same styles you originally had inline in your markup using a style sheet like this (all of the CSS rules are exactly the same as your original inline styles):</p>
<pre><code>.gridView { width: 880px; padding: 5px; color: #333; text-align: center;
height: 278px; border-collapse:separate;border-spacing: 1px;}
.altRow { background: #fff; color: #284775 }
.row { background: #f7f6f3; color: #333; height: 50px }
.footer { background: #5d7b9d; font-weight: bold; color: #fff; height: 20px }
.pager { background: #284775; color: #fff; text-align: center; }
.selectedRow { background: #e2ded6; font-weight: bold; color: #333 }
.headerRow { background: #5d7b9d; font-weight: bold; color: #333;
text-align: center; border: 1px solid #000; height: 20px }
.editingRow { background: #999; height: 40px; width: 100px }
</code></pre>
<p>Once you've got your CSS established, the next thing to do is handle clicking the header check boxes. To do this, you <strong>must</strong> use a JavaScript framework like <a href="http://jquery.com/" rel="nofollow">jQuery</a>, <a href="http://www.dojotoolkit.org/" rel="nofollow">Dojo</a>, <a href="http://developer.yahoo.com/yui/" rel="nofollow">YUI</a>, <a href="http://mootools.net/" rel="nofollow">MooTools</a> or <a href="http://prototypejs.org/" rel="nofollow">Prototype</a>. Doing it without one would take me all day to write out and explain properly, and even then it may not even work across all browsers. I'll show you how to do what I think you're looking for using jQuery, since that is what I'm most comfortable with, however any JavaScript framework can accomplish the same thing.</p>
<p>In your header template, you won't need anything except an ID on your <code><input /></code> tag, which you already have. You should remove the <code>onclick</code> attribute you already have, since you won't need it. Make sure you're using the CSS rules I defined above, as the code I'm going to write relies on it being there.</p>
<p>First, subscribe to the click event of the header checkbox. When the checkbox is clicked, this code finds the column the checkbox exists in and then goes through every row in the table and clicks the checkbox it finds in that column.</p>
<pre><code>$(document).ready(function() {
$("#chkAll").click(function(){
// First find the column index of the clicked checkbox
// If you know your column order won't change, this
// can be done with less code by just hard-coding
// the "colIndex" variable to the zero-based column number
var $this = $(this);
var clickedColumn = $this.closest(".headerRow > th");
var headerRow = $this.closest(".headerRow");
var colIndex = headerRow.children().index(clickedColumn);
// Next, traverse through the table, checking or
// unchecking each checkbox in the specified column index
var table = $this.closest("table.gridView");
if (this.checked) {
table.find("tr.altRow, tr.row").each(function() {
var $this = $(this);
// Finding the checkbox in the correct column
// involves finding the correct column and then
// getting the checkbox inside it. This is easy
// with jQuery
var checkbox = $this.children()
.eq(colIndex)
.children("input:checkbox");
checkbox.attr("checked", true);
$this.addClass("selectedRow");
});
} else {
table.find("tr.altRow, tr.row").each(function() {
var $this = $(this);
// Finding the checkbox in the correct column
// involves finding the correct column and then
// getting the checkbox inside it. This is easy
// with jQuery
var checkbox = $this.children()
.eq(colIndex)
.children("input:checkbox");
checkbox.attr("checked", false);
$this.removeClass("selectedRow");
});
}
});
});
</code></pre>
<p>A working demo of this can be found at: <a href="http://jsbin.com/alafo" rel="nofollow">http://jsbin.com/alafo</a></p>
http://stackoverflow.com/questions/1657799/determining-object-equivalence-for-value-types-reference-types-and-ilists-in-ne/1657833#16578333Answer by Dan Herbert for Determining object equivalence for value types, reference types and ILists in .netDan Herbert2009-11-01T18:02:06Z2009-11-01T18:02:06Z<p>Why should you care whether the value has changed or not? Is there a reason why you can't just assume the value changed every time the setter is called?</p>
<p>If there is a good technical reason why, you could always use generics and make your <code>Value</code> of type <a href="http://msdn.microsoft.com/en-us/library/ms131187.aspx" rel="nofollow"><code>IEquatable<T></code></a> instead of type <code>object</code>. This ensures that the object has implemented the <code>Equals()</code> method.</p>
http://stackoverflow.com/questions/1654780/how-to-show-gridview-row-in-zoom/1655577#16555770Answer by Dan Herbert for how to show gridview row in zoomDan Herbert2009-10-31T20:44:32Z2009-11-01T14:08:27Z<p>Although you'd be better off using a JavaScript library to handle this in the long term, I'll just explain how to achieve the zoom effect you're looking for to keep things simple.</p>
<p>Your markup and .NET code is correct the way it is. You'll need to adjust your JavaScript and add some CSS do what you're looking for.</p>
<p>At it's most basic level, what you want to do is this: </p>
<pre><code>function MouseEvents(objRef, evt) {
if (evt.type == "mouseover") {
objRef.style.fontSize= "120%";
} else {
objRef.style.fontSize= "100%";
}
}
</code></pre>
<p>Changing the height and width like you did in your question will only change the dimensions of the <em>cells</em>, not the contents. The easiest way to achieve a zoom effect is to increase the font size.</p>
<p>Once you've done this, you need to consider how the flow of your table will be affected by making the font bigge. As the font gets bigger, the height & width of each cell will increase. This can make the layout jump around and become annoying to deal with.</p>
<ul>
<li>To address <em>height</em> shifts, change the <code>line-height</code> in your table cells. This will ensure that rows don't shift up or down as you hover over them. </li>
<li>To deal with the <em>width</em> shifts, the <code>width</code> of your cells (or better, the table itself) should be set to be large enough that the table itself won't grow as the row needs more space to fit the larger text.</li>
</ul>
<p>This is how you would address those issues:</p>
<pre><code>tr {line-height: 25px}
/* change the "200px" to be whatever your table needs */
table { 200px }
</code></pre>
<p>To take this even further, we can improve the JavaScript to be more flexible...</p>
<p>It is a bad practice to include presentation details in JavaScript. Think about what happens if you need to change the look of a hovered row in the future. If this happens, you'll have to modify code logic, which can be annoying to deal with as your app grows. Presentational rules should be in one place, a central style sheet.</p>
<p>It is better to have JavaScript swap out CSS classes instead. Then you can put your "hover" styling rules in a CSS file. To do this you would change your JavaScript to the following:</p>
<pre><code>function MouseEvents(objRef, evt) {
if (evt.type == "mouseover") {
objRef.className = "hover";
} else {
objRef.className = "";
}
}
</code></pre>
<p>Once you've done this, now you can move your "zoom" styles into CSS as the following:</p>
<pre><code>.hover{font-size: 120%}
</code></pre>
<p>The JavaScript just adds or removes this CSS class. Anything without this class will have the default 100% font size, and then when that class is added, it will get bigger. Keeping things in CSS also allows you to add other things like changing the background color of the row, the font-weight, the text color, etc. so it is a good idea to do it like this.</p>
<p>A live demo of the code in this answer can be found here: <a href="http://jsbin.com/ideve" rel="nofollow">http://jsbin.com/ideve</a></p>
<p><hr /></p>
<p>As I mentioned in the beginning of my post though, you'll be better off using a JavaScript framework like <a href="http://jquery.com/" rel="nofollow">jQuery</a>, <a href="http://www.dojotoolkit.org/" rel="nofollow">Dojo</a>, <a href="http://developer.yahoo.com/yui/" rel="nofollow">YUI</a>, <a href="http://mootools.net/" rel="nofollow">MooTools</a> or <a href="http://prototypejs.org/" rel="nofollow">Prototype</a>. This will allow you to completely separate your JavaScript code from your markup (and also your ASP.NET code logic), making it much easier to work with. It also allows you to avoid the perils of cross-browser quirks in JavaScript events, which I'm assuming is why you're using HTML attributes for triggering JavaScript events in the first place, since it's much easier than doing it from scratch entirely in JavaScript with no frameworks.</p>
http://stackoverflow.com/questions/1655319/inserting-a-table-column-with-jquery/1655331#16553311Answer by Dan Herbert for Inserting a table column with jQueryDan Herbert2009-10-31T19:23:55Z2009-10-31T20:12:25Z<p>Try this:</p>
<pre><code>$(document).ready(function(){
$('table').find('tr').each(function(){
$(this).find('td:eq(0)').after('<td>cell 1a</td>');
});
});
</code></pre>
<p>Your original code would add the column to the end of each row, not in between columns. This finds the first column and adds the cell next to the first column.</p>
http://stackoverflow.com/questions/1653127/jquery-right-way-to-bulk-ajax-requests/1653193#16531934Answer by Dan Herbert for jquery right way to bulk ajax requestsDan Herbert2009-10-31T02:19:52Z2009-10-31T19:20:33Z<p>Each ajax request is going to have overhead associated with it. It would be a bad idea to make a call for each row because it could overload the server with requests and you could <a href="http://www.google.com/search?q=denial+of+service" rel="nofollow">DoS yourself</a> if your receive enough traffic. Also, all browsers have a limit on how many HTTP requests can be made at once, so (depending on the browser), the deletions will happen in bursts, not all at once, even if you tell them to execute one after another.</p>
<p>Your best option would be to group the rows to edit/delete into a JSON array and send them to the server in a single request. On the server you can then parse the JSON and delete the items accordingly. Once you're finished, return a JSON array containing your results.</p>
<p>This jQuery pseudo-code code assumes you're either targeting browsers with a native <a href="https://developer.mozilla.org/en/JSON#Using%5Fnative%5FJSON" rel="nofollow">JSON object</a>, or you're using <a href="http://www.json.org/json2.js" rel="nofollow">json2.js</a>. Basically, this code just looks for "the hidden ID" field in each row of the table you display to the user and adds it to an array. You can adjust this as you feel it is needed.</p>
<pre><code>var recordsToDelete = [];
$("tr.myRow").each(function() {
var id = $(this).find("input:hidden").val();
recordsToDelete.push(id);
});
var json = JSON.stringify(recordsToDelete);
</code></pre>
<p>Dealing with results can be harder. You should design your system so that (if successful), every row is deleted. Unless you're dealing with a very complex system, you should never have a situation where some rows pass and some rows fail. If this happens you need to re-consider your system architecture. jQuery has <a href="http://docs.jquery.com/Ajax/jQuery.ajax#toptions" rel="nofollow">events for <code>success</code> and <code>failure</code></a> which you can use to deal with the general success or failure of the request, which I recommend you use.</p>
<p>Continuing from the code above, this is one way to deal with deleting records. I use the <code>complete</code> event here for simplicity's sake, but you should use the <code>success</code> and <code>failure</code> events if possible. The <code>complete</code> event always happens, whether a request succeeds or fails.</p>
<pre><code>$.ajax({
url: "http://stackoverflow.com/questions/1653127",
type: "POST", // Always use POST when deleting data
data: { ids: json },
complete: function(xhr, status) {
var response = JSON.parse(xhr.responseXML);
// Response will be an array of key/value
// pairs indicating which rows succeeded or failed
for (var i = 0; i < response.length; i++) {
var recordID = response[i].recordID;
var status = response[i].status;
// Do stuff with the status codes here
}
}
});
</code></pre>
<p><strong>In Response to Comments:</strong> </p>
<ul>
<li>For apps like gmail, the way it works is so massively complicated that saying "I'll do it this way because Google does it this way", isn't a good idea. Not everything that works for Google will work for every company or web site. Companies like Google have problems to deal with that almost no other web site needs to worry about. However to answer your question
<ul>
<li>I just verified this to be sure: GMail uses one AJAX request with an array of IDs. No individual status codes are sent back. It seems like (and I'm speculating here) Gmail returns an "action ID" for the action you just performed, so you can undo that action by clicking an undo link that appears briefly after you delete an email. </li>
<li>When working on an app, you generally want to make it reliable enough that operations don't fail. You should be performing rigorous QA to make sure of this. Basically, a delete operation should either pass or fail as a whole. A scenario where this could happen is if the user clicks delete as your server goes down. To the user, the site is still up because you're not reloading the page, but the AJAX request will fail because it has no where to go. You'll want to handle stuff like this.</li>
<li>It really depends on the business rules of your app. If your application is being used in a situation where multiple people can change records at the same time (just an example), something that one user tries to delete could have been deleted by someone else just before they click that "delete" button. In most cases, I can't see people caring who deleted the record first since if it's deleted, it's deleted, no matter who really did it. However, a business rule may dictate (as ridiculous as it may be) that you need to report this information to the user. In this case you would have to return the array of statuses for every deletion.</li>
</ul></li>
<li>For preventing hackers from deleting other people's records, there are a few things to do:
<ul>
<li>Treat your AJAX handlers no differently than the rest of the site. They should get no special privileges. A request to an AJAX handler should get authenticated just as everything else.</li>
<li>Use POST requests (as I mention in my example) for destructive operations, or for operations that change data. This will make it harder for hackers to perform <a href="http://www.owasp.org/index.php/Cross-Site%5FRequest%5FForgery%5F%28CSRF%29" rel="nofollow">Cross-Site Request Forgeries (CSRF)</a>. Obviously this is not a foolproof thing to do, but it stops the easy exploits.</li>
<li>Obviously, don't assume the user has the right to delete a record just because the user sent the deletion request. Make sure you verify that the user performing the deletion has the right to remove each record. How you do this will depend on your server-side application.</li>
<li>Make sure you encode all of your values sent <strong>from</strong> the client <strong>to the server</strong>. This will prevent SQL injections.</li>
<li>Make sure you're familiar with the <a href="http://www.owasp.org/index.php/Top%5F10%5F2007" rel="nofollow">OWASP Top Ten list</a>. It covers the most common (but not <strong>all</strong>) major exploits on web sites and explains how to prevent becoming a victim of them.</li>
</ul></li>
</ul>
http://stackoverflow.com/questions/1652506/using-orm-with-stored-procedures-a-contradiction/1652653#16526532Answer by Dan Herbert for Using ORM with stored procedures, a contradiction?Dan Herbert2009-10-30T22:31:46Z2009-10-30T22:31:46Z<p>Most ORM tools (that I've used. I'm in the .NET world) provide a mechanism for using stored procedures. Because ORM tools (again, the ones I've used) like to select <strong>all</strong> columns by default so they're all loaded into object graphs, you generally have to write your SPROCs to select all columns that are part of your object graph. This is the only major oddity I've run into when using an ORM package. </p>
<p>There are usually ways to optimize your SPROC calls in ORM tools so they don't need to select all columns, however that's usually more advanced.</p>
<p>I'd say it's safe to do, but generally you'll only want/need to do it when you need to optimize something that would be slow through normal ORM methods.</p>
http://stackoverflow.com/questions/1776447/detect-when-user-clicks-link-but-aborts/1776461#1776461Comment by Dan Herbert on Detect when user clicks link, but aborts Dan Herbert2009-11-21T19:44:34Z2009-11-21T19:44:34ZThat sounds like a bad idea from a usability standpoint. You should never have a "cancel button" that doesn't actually cancel anything. What you're doing is effectively just creating a cancel button that has no function except to hide the cancel button, but not the action the user would expect to get cancelled.http://stackoverflow.com/questions/1772941/how-can-i-insert-a-character-after-every-n-characters-in-javascriptComment by Dan Herbert on How can I insert a character after every n characters in javascript? Dan Herbert2009-11-20T20:10:03Z2009-11-20T20:10:03ZYou're better off letting the browser wrap text. Do you have long sentences like you used for your example above, or long words?http://stackoverflow.com/questions/1692942/focus-a-cursor-to-submit-buttonComment by Dan Herbert on focus a cursor to submit button?Dan Herbert2009-11-09T03:30:56Z2009-11-09T03:30:56ZWhat server-side framework are you using? Depending on what you're using, there are abstractions built into some frameworks that solve the problem you're having.http://stackoverflow.com/questions/301473/rebinding-events-in-jquery-after-ajax-update-updatepanelComment by Dan Herbert on Rebinding events in jquery after ajax update (updatepanel)Dan Herbert2009-11-09T02:07:35Z2009-11-09T02:07:35ZThis is very similar to this question: <a href="http://stackoverflow.com/questions/256195/jquery-document-ready-and-updatepanels" rel="nofollow" title="jquery document ready and updatepanels">stackoverflow.com/questions/256195/…</a>http://stackoverflow.com/questions/1697898/nested-divs-how-to-make-it-work-for-internet-explorer-7Comment by Dan Herbert on Nested DIVs - How to make it work for Internet Explorer 7?Dan Herbert2009-11-08T21:00:52Z2009-11-08T21:00:52ZI don't think nested <code><div /></code> tags is the issue here. I think it has more to do with your CSS.http://stackoverflow.com/questions/1689045/can-i-get-the-size-of-a-session-object-in-bytes-in-c/1689155#1689155Comment by Dan Herbert on Can I get the size of a Session object in bytes in c#?Dan Herbert2009-11-06T18:01:03Z2009-11-06T18:01:03ZI agree. It's not easy to get the size of an object programmatically. The method I gave is a rough estimate at best, and extremely over-exaggerated at worst.http://stackoverflow.com/questions/20088/is-there-a-way-to-make-firefox-ignore-invalid-ssl-certificates/20114#20114Comment by Dan Herbert on Is there a way to make Firefox ignore invalid ssl-certificates?Dan Herbert2009-11-06T16:30:06Z2009-11-06T16:30:06Z@Greg, I agree. I would definitely recommend your solution over mine as the correct practice.http://stackoverflow.com/questions/445967/c-best-way-to-change-css-classes-from-code/450313#450313Comment by Dan Herbert on C# - Best way to change CSS Classes from codeDan Herbert2009-11-04T16:39:54Z2009-11-04T16:39:54ZThis will add a duplicate class to the list if <code>AddCssClass()</code> is called on a string that already contains that class.http://stackoverflow.com/questions/1669207/how-do-i-merge-aspx-pages-mvcComment by Dan Herbert on How do I merge aspx pages MVC?Dan Herbert2009-11-03T18:25:21Z2009-11-03T18:25:21ZIf I understand your question correctly, you have some markup you want to include on every page, without having to copy & paste it onto every page. Is this correct?http://stackoverflow.com/questions/1655274/google-reader-json-imageComment by Dan Herbert on google reader json imageDan Herbert2009-11-02T01:14:45Z2009-11-02T01:14:45ZIf you could provide an example of what you currently have, I might be able to help you. It's difficult to be of help if I don't know the context you're working in.http://stackoverflow.com/questions/1657799/determining-object-equivalence-for-value-types-reference-types-and-ilists-in-ne/1657833#1657833Comment by Dan Herbert on Determining object equivalence for value types, reference types and ILists in .netDan Herbert2009-11-01T21:24:17Z2009-11-01T21:24:17ZYour reasoning makes sense, however I wouldn't go so far as to check the value of your property every time the setter is called. You'd suffer both in terms of performance and understandability. I think most programmers would expect the "<code>ValueChanged</code>" event to happen every time Value is set, not just when it is set with a new value.http://stackoverflow.com/questions/1656820/gridview-multiple-check-box-columnComment by Dan Herbert on gridview multiple check box columnDan Herbert2009-11-01T16:31:57Z2009-11-01T16:31:57ZI've answered your question as best as I could. I'm still a little unclear on exactly what you wanted though. If I didn't answer your question completely, just let me know.http://stackoverflow.com/questions/1655319/inserting-a-table-column-with-jquery/1655331#1655331Comment by Dan Herbert on Inserting a table column with jQueryDan Herbert2009-10-31T20:12:45Z2009-10-31T20:12:45ZThat's a much better idea. I've changed my answer to include that.http://stackoverflow.com/questions/1655319/inserting-a-table-column-with-jquery/1655332#1655332Comment by Dan Herbert on Inserting a table column with jQueryDan Herbert2009-10-31T19:33:50Z2009-10-31T19:33:50ZThis doesn't work because most, if not all, browsers will wrap all rows around a <code><tbody></code> tag, so the selector would need to be "<code>table > tbody > tr > td:first-child</code>". Of course that may be a somewhat slow query to perform since jQuery would have to do a lot of filtering to get all cells in a big table...http://stackoverflow.com/questions/1653127/jquery-right-way-to-bulk-ajax-requests/1653193#1653193Comment by Dan Herbert on jquery right way to bulk ajax requestsDan Herbert2009-10-31T03:15:34Z2009-10-31T03:15:34ZYou asked some complicated questions in your comments. I've updated my answer to respond to them since 600 characters is not enough space to answer fully.