Rory Fitzpatrick

4,334
Reputation
413 views

Registered User

Name Rory Fitzpatrick
Member for 1 year
Seen 13 hours ago
Website
Location Edinburgh, Scotland
Age
I make websites.
15h
answered Attributes.Add Onclick Event in c# code behind
Nov
11
answered [jQuery] give element same width as previous sibling
Nov
9
awarded  Popular Question
Nov
6
comment Detecting redirect in IActionFilter.OnActionExecuted reliably
In this case I can safely ignore those types, I'm only interested in when a view is being rendered (which I've only really just realised, so it somewhat renders my question a mute point...)
Nov
6
comment Detecting redirect in IActionFilter.OnActionExecuted reliably
AuthorizeAttribute executes before the controller is invoked, I have custom ActionResults that are being returned by my controller action. How can I change the result when ActionResult::ExecuteResult is called?
Nov
5
comment Detecting redirect in IActionFilter.OnActionExecuted reliably
My solution at the minute is to check is the result is of type ViewResultBase, which covers ViewResult and PartialViewResult. I can't yet think of any other result that I might want to cover, other than something I'd add myself.
Nov
5
asked Detecting redirect in IActionFilter.OnActionExecuted reliably
Nov
4
comment JavaScript - can I perform a getXmlHttpRequestObject to another domain?
Are you in control of the resource you're requesting on exampleB.com?
Nov
4
answered Can you use the :after pseudo element to add html?
Nov
4
answered asp.net mvc 2 preview 2 and Spark
Oct
26
comment How to add rounded borders on a a:hover in ul li list?
DD_roundies (dillerdesign.com/experiment/DD_roundies/…) is excellent for adding border-radius to IE.
Oct
26
comment How to add rounded borders on a a:hover in ul li list?
That uses a lot of extra, non-semantic markup. I wouldn't recommend it.
Oct
25
comment How to design resolution independent CSS elements ?
In the past I've used thecounter.com/stats but looking at them now it looks a bit suspect, seems to be including Chrome as Safari... Me thinks I'll have to go hunting for better source.
Oct
21
revised where can i find a similar layout theme like basecamphq.com ?
edited tags
Oct
19
accepted J2ME lcdui: Can I manipulate my GUI in a worker thread?
Oct
19
comment Why are JS scripts usually place in the header of a document?
$(document).ready != window.onload, it uses the DOMready event which is fired when the page DOM has been built, onload is generally when the page has rendered (atleast in IE, FF etc. work differently). See jQuery docs on the ready event for more.
Oct
18
comment How to design resolution independent CSS elements ?
Please don't use W3Schools as a reference for web stats, their audience is technically minded and not typical of the general web population.
Oct
18
comment <table> vs <div> (yet again)
If you're asking the question '<table> vs <div>?' you're doing it wrong. It should be 'meaningless tag-soup vs sematic web-standards'. If you can't get what you want then it's time to face facts and admit that you don't know enough CSS, so either learn more or give it to someone who does.
Oct
18
comment Switching from tables to divs with CSS
Then we're into the idea of Progressive Enhancement. Look at the CSS3 property 'border-radius' and it's webkit/mozilla cousins, using those techniques you can target standards compliant browsers today without hacks and still support other browsers albeit with a degraded visual experience. Once those browsers catch up they should start experiencing the same effects.
Oct
17
comment Switching from tables to divs with CSS
In that case I would consider using a repeating image (i.e. wide enough to fit most resolutions but 1px high) and set that as the background to the container div.
Oct
17
answered J2ME lcdui: Can I manipulate my GUI in a worker thread?
Oct
17
answered Switching from tables to divs with CSS
Oct
17
answered How to unit test private methods in BDD / TDD?
Oct
17
comment style css working but link css not
Without seeing HTML there's not much we can do!
Oct
16
answered How to point to CSS default class using the class attribute
Oct
16
comment How to point to CSS default class using the class attribute
That should read that it's only invalid in XHTML 1.1, the rest validate fine
Oct
16
comment How to point to CSS default class using the class attribute
It will only not validate under XHTML 1.1, XHTML 1.0, HTML 4.01 and HTML5 all validate fine, and arguably you should be moving towards HTML5 anyway.
Oct
16
revised Rails form with multiple nested models causes issues with radio groups
added 157 characters in body
Oct
16
comment Rails form with multiple nested models causes issues with radio groups
Thanks, this was exactly it! I had tried manually adding index values using Firebug but was getting the error I mentioned, turned out this was because I had other form fields and was mixing index and non-indexed name attributes.
Oct
16
revised Rails form with multiple nested models causes issues with radio groups
add contents of params[:order] hash
Oct
16
comment How to hide parts of HTML when JavaScript is disabled?
I don't think that was the point Reinis was getting at
Oct
16
revised Rails form with multiple nested models causes issues with radio groups
added 166 characters in body
Oct
16
revised Rails form with multiple nested models causes issues with radio groups
edited title
Oct
16
answered How to hide parts of HTML when JavaScript is disabled?
Oct
16
asked Rails form with multiple nested models causes issues with radio groups
Oct
16
comment Placing a small arrow over a letter with css
Borgar has a very good point about the arrow being part of the content, I'd consider using his solution instead.
Oct
15
answered Placing a small arrow over a letter with css
Oct
15
answered How much faster is it to use inline/base64 images for a web site than just linking to the hard file?
Oct
15
comment C# ASP.Net Fancy Buttons
Assuming Javascript for everything is just WRONG WRONG WRONG!! It completely depends on what you're doing, a public website with it's navigation requiring Javascript is next to useless.
Oct
15
comment When using <pre> tag, text goes outside parent <asp:label> border
This would be my recommendation, but just to note it isn't full-proof - if data came from user input it could be \r\n or \r as well, not sure Environment.NewLine would help in this instance (unless you normalize new lines on all user input)
Oct
12
revised Select a Tag with a Selector from a Text Variable using jQuery
grammar, spelling
Sep
28
comment How can I get an image to stick to the bottom of a div as the height of the div changes?
I can't seem to replicate this behaviour in Firefox, is it browser specific?
Sep
22
awarded  Populist
Sep
17
comment Thank you alert upon form submission
Until form is processed, no way of knowing it was actually submitted...
Sep
17
comment Thank you alert upon form submission
Wheres the gurantee at that point that the form has actually been submitted?
Sep
17
revised genreal offset for all anchors in html?
deleted 8 characters in body
Sep
16
comment Naming conventions for Rails migrations
It sounds like the gist of what your saying is come up with sensible names that reflect the changes you're making to the model, rather than generic edit_foo or verbose add_bar_to_foo. e.g. add_bar_support_to_foo. And if your migration is making multiple, unrelated changes then split it up. That makes sense :)
Sep
16
comment genreal offset for all anchors in html?
show me the codez!
Sep
16
asked Naming conventions for Rails migrations
Aug
31
revised Multiple one-to-many associations in one model
reword question