Displaying 4 results from an estimated 4 matches for "dangdev".
Did you mean:
langdev
2005 Oct 13
6
performance
...n Windows, Firefox on Windows and Mac,
and Safari on the Mac, all with similar results.
I''m looking for a way to improve the performance--it makes an
otherwise cool interface pretty unusable. Here''s a movie of it so you
can see it in action with latency and all:
http://www.dangdev.com/movies/webcategories_01.mov
Thanks for any feedback.
Jamie
2006 Jun 22
0
Announcing AutoPilot
...lenium testing from ruby scripts or the command prompt.
Currently, it''s working in Mac OS and Windows.
See the movies under "Docs" at:
http://rubyforge.org/projects/autopilot/
To install:
gem install autopilot
command line usage:
aup
Thanks,
Jamie Orchard-Hays
http://blog.dangdev.com
2005 Nov 30
3
Downcasing Legacy Table Column Names
I''m looking for the simplest way to *automatically* downcase the
attribute names of Models mapped to legacy tables that use upper
case. eg:
class Workorder < ActiveRecord::Base
set_table_name "WORKORDER"
end
which has "NAME" as an attribute can use "name" as an attribute.
currently:
workorder = Workorder.find(1)
workorder.NAME # =>
2006 Jun 12
10
Cross Broswer Fire Event
Is there a standard way of programmatically firing an event on an
element? I think this code works in IE but not FF:
myElement.fireEvent(''onclick'');
I really only care about IE and FF, but anything else is a bonus. I
didn''t see anything in prototype/scriptaculous for this, but I might
have missed it. Thanks.
Joe Athman