Matt

3,337
Reputation
216 views

Registered User

Name Matt
Member for 1 year
Seen Dec 3 at 15:43
Website
Location Houston, TX
Age 29
C#, ASP.NET MVC, Ruby, and Ruby on Rails developer.
Dec
1
awarded  Notable Question
Nov
30
revised JSON encoding problem in IE6 and IE7
added 4 characters in body
Nov
28
comment How to setup routing for my admin section in ASP.NET MVC?
@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.
Nov
14
awarded  Good Answer
Nov
12
awarded  Popular Question
Nov
6
awarded  Popular Question
Nov
5
comment jQuery form validation problem.
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 also 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.
Nov
4
comment JavaScript: Very strange behavior with assigning methods in a loop
@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.
Nov
4
comment JavaScript: Very strange behavior with assigning methods in a loop
wow, that so doesn't answer the question
Oct
26
comment Replace some text from any HTML page before it is displayed
@crescentfresh - you should make that an actual answer. I'd upvote it.
Oct
26
comment Jquery not working in IE
also, define "won't work" - does the click event not fire? does the load() not load the content? does it give an error?
Oct
26
comment Jquery not working in IE
which version of IE?
Oct
22
accepted jQuey tool pluging for dynamic controls
Oct
21
comment bind handler to elements in jQuery object to affect children of elements
unless I misunderstand your desired behavior, your above example works fine for me in IE8: jsbin.com/axuve/edit#output
Oct
21
revised jQuery accordion menu - keep accordion menu open to the page I am on
added 133 characters in body
Oct
21
comment jQuery accordion menu - keep accordion menu open to the page I am on
@Alex - nice! wasn't aware of that one.
Oct
21
answered jQuery accordion menu - keep accordion menu open to the page I am on
Oct
19
comment JQuery not working at all in Opera
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');
Oct
18
revised Help converting this piece of code from jQuery to plain javascript
edited tags
Oct
18
awarded  Populist
Oct
17
comment Enumeration of event handlers
@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 could an observer be observing.
Oct
16
revised Challenges when Designing Large Websites?
added 48 characters in body
Oct
16
answered Challenges when Designing Large Websites?
Oct
16
comment What could be causing db.SubmitChanges() to not work in linq-to-sql?
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.
Oct
15
revised How to simulate target=”_blank” in JavaScript
edited title
Oct
15
comment Jquery mousedown + mousemove
Gosh - well, I'm stumped!
Oct
15
accepted Does jQuery live use setInterval?
Oct
15
revised Jquery mousedown + mousemove
updated answer to actually be a semblance of correct
Oct
15
comment Jquery mousedown + mousemove
How interesting - I didn't realize that. I just tested it on FF3.5 and it is as you say. Which browser are you using?
Oct
15
answered Jquery mousedown + mousemove
Oct
15
answered Does jQuery live use setInterval?
Oct
15
revised jquery toggle event within toggle event creates unexpected behavior.
added 92 characters in body
Oct
14
comment object parameters in Javascript
@thenduks Saying everything in JavaScript is public is ... generally true. But, a bit misleading. If someone said that to me about a language, it would suggest that there is no encapsulation at all, all variables and properties are public. But that is not the case in JavaScript. You can get private functions and variables through the use of closures - crockford.com/javascript/private.html
Oct
14
comment programmatically navigate a linq to sql result
This is in fact one of the reasons they created var. For referencing anonymous types in a type-safe way.
Oct
14
comment How to make the class constructor private in Ruby?
I'm not sure what you want is possible, but even if it was, in theory, you wouldn't be able to call it from a factory method because it would be private. Are you trying to create a singleton? Or do an inversion-of-control pattern?
Oct
14
comment What is a good javascript development environment?
Welcome to StackOverflow llj098. You may check this question (possible duplicate): stackoverflow.com/questions/41880/…
Oct
14
comment Most horrifying line of code you have ever seen?
-1 for lack of reference by poster
Oct
14
awarded  Popular Question
Oct
13
revised jquery $.post function’s result data
edited tags
Oct
13
awarded  Nice Answer
Oct
13
comment scrolling text within a div
I'm confused, you don't want a scroll bar, but you want to be able to scroll? Does that mean you want another button for scrolling?
Oct
13
revised What is your favourite cleverly written functional code?
added 1 characters in body
Oct
13
accepted Should MVC 2 - Preview release be easily upgraded to Beta when it’s released?
Oct
12
comment creating a select element via js, focus doesn’t work in IE
@George - gosh, sure is strange. I get the correct alert text in IE8 (no IE7 handy to test)
Oct
12
comment creating a select element via js, focus doesn’t work in IE
that works for me, in IE8. I double click on "click me", and then the second element, "one", is highlighted/in focus for me. I can even use the up/down arrows to change it.
Oct
12
comment I want to make a “Web 2.0” application without using JavaScript directly. [Details Inside]
Another ex JavaScript enemy here. The problem is there is a lot of very bad JS out there, especially in the "beginners" tutorials from people who don't actually know JS. Not to mention these days you have JS libraries like jQuery that address cross-browser compatability issues for you.
Oct
12
comment creating a select element via js, focus doesn’t work in IE
can you reproduce the problem for us on jsbin.com?
Oct
12
comment creating a select element via js, focus doesn’t work in IE
is it correct to assume that you actually add the select drop down to the DOM?
Oct
12
answered onchange javascript variable
Oct
12
answered Jquery— Finding the ID of an element in a DIV