search for: tanjero

Displaying 6 results from an estimated 6 matches for "tanjero".

Did you mean: panjer
2005 Dec 31
9
RJS Templates not conducting callbacks
I''ve run across a weird problem with RJS that I''m trying to figure out: I have an application that was running 0.13.1 that I recently upgraded to Rails 1.0. I wanted to use RJS templates, so I installed the plugin and updated my prototype javascript file via ''rake update_prototype.'' I attempted to test the templates out via the following code, but the AJAX
2005 Dec 30
2
mangled database record ids
I''ve been going through the excellent tutorial in Agile Web Development With Rails, and hit a bit of a snag. After doing the ''pretty listings'' functionality for the Admin controller, attempting to click ''Show'' next to a product produces an error: ''Couldn''t find Product with ID=#<Product:0x276180c>'' Further, the URL of
2005 Dec 30
2
help on submit_to_remote
hi, read the API doc and made search with google but can''t get a precise explanation on how submit_to_remote work. can someone help on that? thanks
2005 Dec 30
2
Beauty in Page Layout
Hi Railers, I have a model with many associations (20+). I would like to display the relative associations using AJAX, allowing the user to display the association his/her is interesting at a particular time. Is there any existing applications or sample code that I can look at to accomplish the task? Present I have one long page, with master (displaying current record information) and many
2005 Dec 31
2
numeric_spell plugin
I''ve created a plugin that lets you spell out numbers (under one thousand, in English, for now). Examples: >> 23.spell => "twenty-three" >> 23.spell :noun => ''person'' => "twenty-three people" >> (23.14).spell_currency => "twenty-three dollars and fourteen cents" >>
2006 Apr 05
2
RJS and remote forms
I''ve run into what I think is a browser bug related to using remote_forms pushed in an RJS update. In my controller, I have an action that creates a new model and returns a form for one of its children: def create_party party = Party.create render :update do |page| page.insert_html :top, ''party-list'', :partial => ''party_header'',