Dave Ward

6,574
reputation
448 views

Registered User

name Dave Ward
member for 1 year
seen 7 hours ago
website
location Atlanta
age 33
I'm a .NET developer, specializing in web application architecture and development.
2d
comment problem in opening mvc project in 2008 studio
The project type GUID isn't the same for v1 and v2. You need v1 installed to open v1 projects.
Dec
6
answered How to check if inputs are empty with JQuery?
Dec
6
answered Why is JavaScript considered bad by some?
Dec
5
revised using jQuery AJAX with asp.net webservices always goes to error: instead of success:
edited body
Dec
5
accepted using jQuery AJAX with asp.net webservices always goes to error: instead of success:
Dec
5
comment using jQuery AJAX with asp.net webservices always goes to error: instead of success:
Updated the answer with a couple steps that are necessary to get the JSON serialization working in 2.0.
Dec
5
revised using jQuery AJAX with asp.net webservices always goes to error: instead of success:
added 346 characters in body
Dec
5
answered using jQuery AJAX with asp.net webservices always goes to error: instead of success:
Dec
3
accepted General purpose json serializer/deserializer in jQuery?
Dec
3
answered General purpose json serializer/deserializer in jQuery?
Dec
3
answered asp.net postback with jquery ajax and jquery dialog
Dec
3
answered How do I convert the items of an LI into a json object using jquery?
Nov
29
answered Javascript: Each Array
Nov
28
awarded  Enlightened
Nov
28
awarded  Nice Answer
Nov
26
answered How to verify if the Web Service caller is my web site?
Nov
25
awarded  Nice Answer
Nov
21
answered connection string in web config
Nov
20
answered Microsoft CDN for JQuery or Google CDN?
Nov
18
comment Variables set during $.getJSON function only accessible within function
The custom event triggering is basically the same in this simple example, you're right. It does allow you to decouple the functions a bit though, which is nice. That way your AJAX callback doesn't need to drive the next action so directly (which you seemed to dislike), but just notifies interested event consumers that the data has been updated. As your client-side code gets more complex, this is a great way to manage that complexity.
Nov
16
answered How can I ensure that changes to a form DOM are complete before POSTing?
Nov
16
revised Variables set during $.getJSON function only accessible within function
added 639 characters in body
Nov
16
comment Variables set during $.getJSON function only accessible within function
@Matt: Take a look at my recent edits, including the OnDrop and SaveChanges functions, and see if that makes sense. With event-driven code, the idea is to act on these events as necessary, not to orchestrate a certain chain of code to execute all in synchronous order. Anything else is going against the grain when you're working in the single-threaded browser environment; especially when using an event-driven framework like jQuery.
Nov
16
revised Variables set during $.getJSON function only accessible within function
added 374 characters in body
Nov
16
comment Variables set during $.getJSON function only accessible within function
@Matt: In that case, you should probably use a global variable (the window.foo that others have mentioned) to store the data in. You could still use a custom event to notify IssuesReceived that it should then build the drag 'n drop interface based on what's in the global variable though. As events like "drop" happen, you can modify the global object. Then, eventually send that up-to-date object back to the server to save the user's changes.
Nov
16
revised Variables set during $.getJSON function only accessible within function
added 600 characters in body
Nov
16
comment Variables set during $.getJSON function only accessible within function
@Nosredna: Custom events are very underused, IMO. They're great for cleaning up the nested anonymous function spaghetti that inline event handlers tend to produce.
Nov
16
answered Variables set during $.getJSON function only accessible within function
Nov
16
comment Validating user input with JavaScript
Are you using jQuery (or another JavaScript library), or are you looking for pure JavaScript?
Nov
15
answered Keypress in jQuery: Press TAB inside TEXTAREA (when editing an existing text)
Oct
26
comment Getting Better Error Message From ASP.Net [WebMethod] Called From JQuery
Somewhat unrelated, but I would recommend using JSON.stringify instead of $.toJSON. In modern browsers, JSON.stringify will automatically take advantage of faster, browser-native functionality, instead of serializing it via the JavaScript engine.
Oct
22
awarded  Nice Answer
Sep
24
accepted Scream of the day - Javascript serialising arrays in different ways…
Sep
24
answered Scream of the day - Javascript serialising arrays in different ways…
Sep
23
answered jquery: when does $(”???”) scan the whole DOM?
Sep
21
answered Is this an example of selectors?
Sep
16
accepted Should an intranet web application utilize a CDN
Sep
16
answered Should an intranet web application utilize a CDN
Sep
12
accepted Problem with jQuery.ajax call to web service
Sep
12
answered Problem with jQuery.ajax call to web service
Sep
10
answered Get URL parameter with jQuery
Sep
10
revised Is it acceptable to use tables for forms? Or is it still more correct to use divs?
Wow, I just realized that I typed type="submit" for the text fields in the example code. I need a vacation.
Sep
9
comment Frustrating problem with JavaScript’s getElementById()
I think this is correct. The easiest solution might be to just move the script references to the bottom of the page, and leave them as-is. That should improve the initial page load time too anyway.
Sep
9
comment Whats the best way to send array of objects from javascript to webservice?
The data parameter must be quoted when calling ASP.NET AJAX services. If you pass jQuery an object as the data parameter, it will serialize it as k=v pairs in the POST request. ASP.NET AJAX services expect a JSON string representing the parameters instead, not k=v pairs.
Sep
9
answered Whats the best way to send array of objects from javascript to webservice?
Sep
8
answered Is it acceptable to use tables for forms? Or is it still more correct to use divs?
Sep
4
answered How to pass querystring to Ajax WebService
Sep
2
comment Do you have a programming portfolio? Does it help you to get a job?
You don't have to have a blog, or a programming portfolio, or any sort of professional development at all if you don't want to. Identifying the minimum you can get by with obviously isn't the point of this question.
Sep
2
comment Do you have a programming portfolio? Does it help you to get a job?
Those things aren't mutually exclusive. It's easy to have both a social life and a durable online presence. Reading technical books is certainly important, but if it were enough by itself, then CS students would be graduating into "senior" developer positions.
Aug
31
revised Do you have a programming portfolio? Does it help you to get a job?
added 756 characters in body