Displaying 15 results from an estimated 15 matches for "fswg1ka7iew".
2006 Mar 27
5
InPlaceEditor convertHTMLLineBreaks
I''m curious if anyone else has a need to disable
*convertHTMLLineBreaks*. I actually need to show the <p>''s and <br>''s
in the editor and browsing the source code, see that this isn''t
configurable.
Jamie
2006 Jan 25
10
Ajax.InPlaceEditor onSuccess: ???
I''m looking for onSuccess: in Ajax.InPlaceEditor, but it doesn''t
appear to exist. onComplete isn''t what I need because I only want my
callback on success. Is there a way to do this?
Thanks,
Jamie
2006 Sep 10
11
Using partials with Markaby
I''m trying to use a partial from within Markaby. I haven''t been able to
figure out how to access a parameter passed into the partial. Here''s the
code I''m using:
h1 "Create a new note"
if @note
render :partial => ''form/errors'', :record => @note
end
...
(that snippet, as well as the partial is stolen shamelessly from Restolog
2005 Dec 27
2
ruby 1.8.2 or 1.8.3 on Linux?
I''ve seen some reports of problems with running Rails (version 1.0
here) on Ruby 1.8.3. Is this true across the board or just Mac OS?
I''m setting up a Linux server and want to know if 1.8.3 is ok on that.
Thanks,
Jamie
2005 Oct 17
11
a better question
I''m trying to call a click() event on an <a href> that has an
Observable registered for it. Something like:
<a href="#" id="toggle_1929">show</a>
...
Event.observe("toggle_1929", ''click'', function(event){ Element.toggle
("group_1929"); return false; });
...
$("toggle_1929").click(); //this throws
2005 Jan 29
4
format question
how can I get a float to always print two decimal places?
Thanks,
Jamie
2005 Nov 30
7
newbie: Getting started on Windows XP & MAc OSX 10.4
Hello,
What installs do you recommend for Windows XP and MAc OSX 10.4?
I want to setup Rails as easy as I can.
Thanks
Frank
--
Posted via http://www.ruby-forum.com/.
2005 Dec 15
2
Migrations on SQLServer ??
Hello all,
I''ve spent a while looking for a sniff of this on the wiki or google at
large..
Does migrations work for SQL Server on 1.0 ?
--
------------------------------
Joyeux Noël
------------------------------
Peter Fitzgibbons
_______________________________________________
Rails mailing list
Rails-1W37MKcQCpIf0INCOvqR/iCwEArCW2h5@public.gmane.org
2005 Oct 18
0
RE: Error: "onclick() is not a function"
...>> Jamie
>>>
>>>
>>> On Oct 17, 2005, at 5:07 PM, San Trois wrote:
>>>
>>>
>>>
>>>
>>>> It''s also the name of the function you need to call ;)
>>>>
>>>> --- Jamie Orchard-Hays <jamie-fswG1Ka7Iew@public.gmane.org> wrote:
>>>>
>>>>
>>>>
>>>>
>>>>
>>>>> onClick is the event listener I''m trying to trigger.
>>>>>
>>>>> Jamie
>>>>>
>>>>>
>>>&...
2005 Jan 31
2
MySql 4.1.9, passwords, Rails
After spending a lot of time today trying to get CocoaMySQL connecting
to a remote MySQL 4.1.9 server via ssh tunnel and then experiencing the
password hashing issue locally when I put in passwords on my local
Mysql server, I started wondering about Rails compatibility.
Will rails now hash passwords correctly when connecting to MySql
4.1.7+, or should I stick with using old_password() when
2006 Apr 18
1
Ajax.Updater: getting onComplete to fire in IE
Has anyone found a way to get onComplete to fire in IE? I''ve built a
bunch of functionality around Updater and this is a show-stopper for
me. I''m on the latest Scriptaculous.
Thanks much,
Jamie
2006 Jan 23
0
InPlaceEditor with text areas--inserting new lines
Hi:
I just started using IPE with an app that has a listing of FAQs that
I want to edit in place. What I''ve discovered as I started wiring
this up is that when I click to edit, the text areas are inserting
new lines every 70-something characters. My data doesn''t have these
new lines.
Is there a way to change this behavior?
Thanks,
Jamie
2006 Jan 24
0
In Place Editor help
Can anyone suggest a way to tell the InPlaceEditor not to break my
text up into multiple lines with new lines in them? It''s breaking the
text up around 72 columns, but I don''t see a way from the
documentation to prevent this.
Thanks,
Jamie
2005 Oct 17
2
triggering event handlers
I''ve registered onClick events I want to trigger from javascript, but
can''t seem to find a way to do this. It seems like it should be
obvious and easy, but I''m not finding the answer. :-(
Thanks,
Jamie
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 # =>