Displaying 20 results from an estimated 24 matches for "mmb7mzphnfi".
Did you mean:
mmb7mzphnfy
2006 Feb 09
22
Length of parameters in Autocompleter.Local()
Hi,
I''m using PHP to fill my parameterlist for Autocompleter.Local as
shown in the example
(http://wiki.script.aculo.us/scriptaculous/show/Autocompleter.Local).
<script type="text/javascript">
new Autocompleter.Local(''recipeNameAlternative'', ''rezept_list'', [
<?php $ende = count($rezept_vorgabe);
for ($i=0;$i<$ende;$i++) {
2006 Oct 28
5
Seperate admin and public views using one controller REST CRUD
Hello,
I want to seperate my admin and public views but only use one
controller. How to seperate layouts ist clear but how can I tell the
controller to render the *.rhtml files in views/admin/ when logged in or
render the *.rhtml files in views/public/ (for example).
Thanks for any help!
PS: using REST and CRUD in edge rails
--~--~---------~--~----~------------~-------~--~----~
You received
2007 Sep 18
4
Prototype.js and Multidimensional Arrays
Hi there,
this code works only fine , if i dont embedding the prototype.js in my
document:
<script type="text/javascript">
var myCheckBox2 = new Array();
myCheckBox2[''Ort''] = new Array("hamburg","berlin","hannover");
myCheckBox2[''Art''] = new Array("programmierung","support");
2008 Jan 15
9
using postgres rails/rake fails
hello list,
yesterday i installed a fresh rails installation with a proper upgrade
of gem to version 1.0.1
i saw, there is still a gem package to support postgresql known as
postgres-0.7.9.2008.01.09
on rubyforge, its the newest one of stable postgres support for ruby
additionally i installed, of course, a the postgres database on my
machine to
C:\Programme\PostgreSQL\8.2
after setting up a new
2007 Jan 22
1
Broken Umlauts (ÄÖÜäöüß) since Update on Rails 1.2.1
Dear group-members,
I´m a little frustrated, since I have updated on Rails 1.2.1:
My application uses some tables from a MySQL database encoded in UTF-8.
With Rails 1.1.8, I had no problems with displaying German Umlauts
(ÄÖÜäöüß) in views and forms, all went well without the need to
worry about charsets and encoding.
Since yesterday, my browsers (Safari, Firefox) only display little
question
2010 Jun 11
2
Problem using Ruby On Rails with rspec to write user stories
Hej out there,
i''m a newbie on ror and im trying to install rspec on my computer. I
installed rspec an rspec-rails via gem.
when i''m running the file script/generate rspec it works. but i have
no folder called stories....
how can i fix this problem?
thanks...
hope to get some help;)
--
You received this message because you are subscribed to the Google Groups "Ruby on
2008 Mar 15
4
* Please help a RoR Newbie!!*
Hi Everyone!
I''ve only just started with Ruby so am a touch lost.
THis morning i downloaded the quick win (locomotive) and, once i swith
that on, I can view the Ruby start page at localhost:3000
My problem is, I''m not that great with finding my way round terminal. I
can do basic cd .. etc to view files, but am VERY LOST!! :-)
the Ruby page says:
#
Create your databases and
2007 Dec 20
4
Ruby on Rails mailer
Today I made a first attempt to make use of ruby mailer. A volunteer
fills out a form and the information is then sent to an administrator.
I generated a mailer called notifier and added the following:
class Notifier < ActionMailer::Base
def volunteer_signup(volunteer, sent_at = Time.now)
@subject = ''A new volunteer has signed up''
@body = { :title =>
2005 Dec 12
4
Rails crashes over night?
I''m
running Ruby on Rails on Fedora Core 4 with lighttpd and fastcgi. I
also used the login generator (don''t know if relevant). I have the
following problem: At day time I work on the server and create/modify
ruby files on the server, all pages work fine. Than the next day I want
to open de server I get the error at the end of this message (on all
pages, including non protected).
2006 Nov 21
1
Bug in Effect.Pulsate with IE?
Hi there,
can someone confirm a bug with IE and Effect.Pulsate()? When use the
Effect wihtout the option pulses the element is hiden after the effect
has finished.
When i use Effect.Pulsate(element, {pulses:3}) all runs fine.
In Firefox both calls runs fine...
Bye, René
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
2007 Sep 17
0
DatePicker in external file?
i ry to use this
http://www.eulerian.com/en/opensource/datepicker-prototype-scriptaculous
i included scriptacolous,prototype and datepicker.js in the main file
hen i load this data via ajax request
$o .= " <input value=\"".$rs->fdatum_faelligkeit."\"
ID=\"fdatum_faelligkeit\" name=\"fdatum_faelligkeit\" type=\"text\"
2007 Apr 28
0
script/plugin and http-proxy with Authentication
Hi group,
my gem ist working like a charm with http_proxy (and friends)
environment-variables as described here
http://blog.pomozov.info/posts/the-end-of-gem-vs-proxy-war.html
But I have a problem (on windows) with
------------------------------------------------------------------------------
> ruby script/plugin discover
c:/ruby/lib/ruby/1.8/open-uri.rb:287:in `open_http'': 407
2007 May 29
0
STI and Active Record
Hey,
I''m trying to use STI in my models, while writing a little cms.
A have a model called Page and some subclasses like ContentPage,
Sysfolder etc. Some classes share similar attributes, so I use STI and
one table for all types.
Now I''m writing a form for edititing a page and I want to have the
opportunity to change the type of it at runtime. But that seems to be
a problem:
2007 Jul 24
1
blocks using concat do not work inside helper
Hi,
I wrote this ticket yesterday and it had been deleted and marked as
invalid
http://dev.rubyonrails.org/ticket/9066
Ticket:
-----------------------------------------------------------------------
When I try to do this from a helper:
def foo(&block)
concat "<div>", block.binding
yield
concat "</div>", block.binding
end
def bar(&block)
concat
2008 Feb 08
0
Autocompleter - get rid of default selection?
Running Scriptaculous 1.8.1 I''m experiencing an issue with the
autocompleter.
As part of a search page, I''ve added and autocomplete field. During
entering text, the first entry in the autocomplete list is
automatically selected- once the user hits enter (regardless if that
is the entry he''s looking for or not), the form is submitted.
I''m looking for a way to
2008 Apr 17
1
Callback Problem: Why to use self.var= instead of @var=
Hi,
I''ve defined the following model:
class Eintrag < ActiveRecord::Base
before_validation :vali
protected
def vali
# self.feld1.reverse!
self.feld2 = self.feld1
end
end
Now I''m wondering why I have to write
self.feld2=self.feld1
and why
@feld2=@feld1
doesn''t work.
I''ve found the thread
2008 May 04
1
scaffolding with namespace
Hi,
is there a way to scaffold with namespace?
I''d like to generate a Posts model with namespace admin. But using
script/generate scaffold admin/post title:string
the migration would generate a table "admin_posts".
So I did now
script/generate scaffold post title:string
moved the controller, views manually to admin/... and had to change each
link manually from (e.g.)
2010 Apr 26
0
add a new format to locales
hello list,
i try to add a new format to my locales file de.yml
i looks like that:
de:
number:
square_meter:
format:
unit: ''m²''
format: "%n %u"
precision: 2
separator: '',''
delimiter: ''.''
after that i''ve copied the number_to_currency method to the
2011 Feb 02
0
webrick, thin and shotgun bug? with dragonfly and wicked_pdf/PDFKit
Hi,
i''have started a discussion in dragonfly google group because of
problems using dragonfly image processing gem with wicked_pdf.
http://groups.google.com/group/dragonfly-users/browse_thread/thread/c8602007c3e43753
In these post I have linked to a public github project for testing
this issue.
There''s also a heroku app:
http://wicked.heroku.com/projects.pdf
debug mode of
2006 Feb 10
0
Add value to other input impelmented?
Hi,
I want to add the value of my Autocompletion field to an input-field
by clicking on a (submit-)Button/Link. Is there any function that
provides me easy help in scriptalous-JS?
It would be nice if there is a possibility to give the added value a "+"
or "-" so the input-field knows if it has to be in or out of my results.
before the night gets to long, while