similar to: observe_field gets "Form is not defined"

Displaying 20 results from an estimated 200 matches similar to: "observe_field gets "Form is not defined""

2006 Jun 08
2
accessing fixtures in tests
hi all, my first attempt at tests and i''m having trouble accessing the fixture values, if anyone can make it suggestions. i have news_release_test.rb, using new_releases.yml as the fixture file according to the agile book, i should be able to access the fixture properties within my test as such: assert_equal @first_test.id , @news_release.id unfortunately, i try that and get:
2004 Feb 16
1
Newbie, Win2K config, fails on test 8 (long)
Hi. I'm not a sysadmin, but I'm the only person in this building who knows anything about linux boxes. I'm trying to install samba to connect the box (rh7.3) to the windows network. test 8 is where I run into problems. My username and passwd are the same for both. My firewall is down. I have appended my .conf file. I've been searching around through the archives and
2005 Feb 27
0
SPEEX_GET_QUALITY
Hi Maitland, I think your solution is probably the best implementation you could do for SPEEX_GET_QUALITY. However, unless you have something against that, I think removing it would be better, as in many cases (e.g. VBR), the call just doesn't make sense). This would of course break the API (not the ABI), but given the fact that it was never implemented, any app that uses it is already broken
2005 Jan 27
2
Bug#292548: libspeex1: speex 1.1 in unstable?
Mikael Magnusson writes: > Package: libspeex1 > Version: 1.1.6-1 > Severity: wishlist > > Is there anything that keeps 1.1.6-1 in experimental from being uploaded to > unstable? Do you know when it will happen? > > I'm debianizing iaxclient, which needs speex version 1.1.x. Currently I'm > using 1.1.6-1 in experimental, which is working fine. >
2005 Feb 27
2
SPEEX_GET_QUALITY
To close debian bug #271052, http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=271052 I went ahead and did the following: $ diff -u ../original/speex-1.1.6/libspeex/nb_celp.c libspeex/nb_celp.c --- ../original/speex-1.1.6/libspeex/nb_celp.c 2004-07-15 01:16:52.000000000 -0400 +++ libspeex/nb_celp.c 2005-02-27 08:24:49.000000000 -0500 @@ -1746,6 +1746,21 @@ st->submodeSelect =
2004 Aug 06
4
speex on sparc seems OK
Hi, With the talk of speex possibly mis-behaving on PPC, I decided to check the big-endian architecture I have handy - the Ultrasparc. - playback of Intel platform .spx files appears fine on the Ultra 10. - encoding a .wav file and playing back on the Ultra 10 worked too. My evaluation is that it works the same on my Ultra 10 as it did on my Intel laptop. But I must say the evaluation was made
2004 Aug 06
0
speex_1.0.beta1+-2_i386.changes ACCEPTED
Debian Bug Tracking System writes: > Bug#160609: marked as done (ITP: speex -- Free Speech Coding) The Debian project ( http://www.debian.org/ ) now provides speex packages. Users tracking the unstable development distribution (sid) can now 'apt-get install speex' to fetch and provide the speexenc and speexdec applications. Hopefully in about 10 days the speex packages will transition
2004 Aug 06
0
Speex beta 3 is out
Jean-Marc Valin writes: > I'd like to announce Speex beta 3: ...and I would like to say that it has been uploaded to Debian. Let me pass along the following words I got via email from the Debian Installer: "Thank you for your contribution to Debian." It is currently in http://incoming.debian.org, and in a few hours it will move from there into the "package pool" as
2005 Feb 27
1
SPEEX_GET_QUALITY
On Sun, Feb 27, 2005 at 06:09:48PM -0500, Jean-Marc Valin wrote: > Hi Maitland, > > I think your solution is probably the best implementation you could do > for SPEEX_GET_QUALITY. However, unless you have something against that, > I think removing it would be better, as in many cases (e.g. VBR), the > call just doesn't make sense). This would of course break the API (not
2006 Nov 04
0
need help with observe_field
Hey all, I''m trying to update a div everytime the value of my textbox is changed: here is _form.rhtml: <p><label for="bookmark_address">Address</label><br/> <%= text_field ''bookmark'', ''address'' , :size => 120 %></p> <div id="ajaxtitle"> <%= render :partial =>
2006 Aug 04
2
observe_field for radio_button
Hi, I need to observe a set of radio buttons but am having great trouble. My observe_field looks like this: <%= observe_field :user_select, :frequency => 0, :url => { :action => :admin_control } %> Now it works fine if I use a text_field like this: <%= text_field :user, :select, "size" => 20, "maxlength" => 16 %> But I want a radio button, and
2006 Aug 13
2
Catching "keypress" event with observe_field
I''m desperately trying to update a div when a key is pressed in a text field. Eg. : <input type="text" id="field"> <div id="area"></div> <%= observe_field :field, :url => {:action => :myAction}, :update => :area, :with => "text_param", :on => ''keypress'' %> This does not seem to work, and I
2006 Nov 04
0
observe_field and datetime_select
Hello all, I have a form with a datetime_select. I need to use the actual time selected in an action triggered by observe_field. Could make it work with other select fields, but not with datetime_select. Seems that observe_field can locate the element just by the id (not by the name). If so, how can I set the ID of datetime_select ??? I''m in this for some hours, but could not find a
2006 Jul 12
2
Can''t get observe_field to take a variable for a field name
The subject pretty much says it all: I can''t?get observe_field to take a variable for a field name I''ve tried: <%= observe_field(var_name, ... <%= observe_field("#{var_name}", ... <%= observe_field(:"#{var_name}", ... No luck. Am I missing something? Thanks, : ) Jason -- Posted via http://www.ruby-forum.com/.
2006 Jul 20
1
Ajax and observe_field not updating specified DIV
I have a page that has a dropdown which i''m using observe_field on to make an ajax call back to my controller. The page initially displays fine. The method is invoked in my controller when i select a choice in the dropdown and I have an rjs file which is then invoked. The rjs file looks like this: page.replace_html ''embed_calendar'', :partial =>
2006 Jun 12
1
multiple observe_field''s and IE 6
Has anybody ran into any problems using mulitple observe_field or multiply remote_function calls when the browser is IE? I have a search and retrieve app that works very well in Firefox or Safari, but in IE, the app sometimes just sits there for minutes and then catches up all at once, or never at all. I just want to know where to start looking to solve this one, as most of our customers will be
2006 Jun 27
0
Using passed-in locals in observe_field in a partial
I need to be able to assign a value to the field_id field of observe_field inside a partial. Ideally, it would look something like: <%= observe_field(local_variable_name1, :url => {:action => ''some_constant'', :id => local_variable_name2}) %> I''m not having a problem with the assignment to :id of local_variable_name2. But I can not figure out how to use
2006 Jun 28
1
accessing multiple observe_field from one callback
I have a form that has 4 text_field entries, each one with an observer_field and i want to access the data that is currently inserted on every field from the :update method for each field. i tried using instance variables but it appears that each text_field creates an instance of the searchcontroller for its own. I also tried using the :with => "something" on the definition of the
2006 May 23
1
Help with observe_field
Folks, When I use observe_field, I get a javascript error "Form is not defined". Any thoughts? __View: search.rhtml__ <label for="search">Search:</label> <%= text_field_tag :search %> <%= observe_field(:search, :frequency => 0.25, :update => :search_hits, :url => { :action =>
2006 May 23
0
observe_field internet explorer
Hi, I have the following observe_field which works in Firefox but doesn''t do anything in Internet Explorer .. as though it doesn''t exist. How can I debug this in bloody MS world. <%= text_field :drawing, :job_no, :title =>"Job ''begins''", :autocomplete => "off", :onclick => "$(drawing_job_no).value =