Displaying 12 results from an estimated 12 matches for "in_place_editing".
2006 May 11
2
How do you make in_place_edit fields appear when empty?
Here''s a simple one...
When using in_place_edit fields, they don''t appear unless they already have a value. How can I get similar functionality when they are empty?
Thanks,
Nathan
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://wrath.rubyonrails.org/pipermail/rails/attachments/20060511/a98640cf/attachment.html
2008 Apr 01
1
in_place_edit
where is the in_place_edit plugin?
script/plugin source http://svn......?
--
Posted via http://www.ruby-forum.com/.
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group.
To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org
To unsubscribe from
2006 Jul 16
0
in_place_edit-like functionality in my controller
Hello,
I''m trying to extend the functionality of in_place_edit and would
like to have a function in my controller that populates methods for
requested object/methods (just like in_place_edit does).
Here''s some test code I tried to make work (from my controller):
def do_some_edit(object, field)
logger.info("We are editing")
end
do_some_edit(:item,
2006 May 17
0
How to validate in_place_edit updates
Can anyone enlighten me on how to make in_place_edit fields go through validations that are defined in the model? For example, my customer model has a "validates_numericality_of phone", but when the in_place_edit is done you can enter whatever you want. The field is defined as a string in the DB. I can''t change the database schema, due to other constraints, so I need a
2008 Sep 17
0
Problem with url_for and namespaces (in in_place_editing)
Hello,
Well I have been working with the in_place_editing plugin and have
been running into the following error:
Unknown action
No action responded to 1
My code on my view is below:
<span id = "permission"><%= @permission.name %></span>
<%= in_place_editor "permission", {:url => url_for(:action =>
"...
2006 Jan 12
2
in-place editing with validation
is there a good in-place editing solution with rails that does validation
too ?
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://wrath.rubyonrails.org/pipermail/rails/attachments/20060112/273fad3e/attachment.html
2011 Feb 18
1
Rails plugins new official maintainers
.../acts_as_list)
Mark Turner
Swanand Pagnis
hide_action (https://github.com/sikachu/hide_action)
Prem Sichanugrist
open_id_authentication (https://github.com/Velir/open_id_authentication)
Anuj Dutta
Patrick Robertson
asset_server (https://github.com/andhapp/asset_server)
Anuj Dutta
Rishav Rastogi
in_place_editing (https://github.com/amerine/in_place_editing)
Mark Turner
Devdatta
upload_progress (https://github.com/rishav/upload_progress)
Rishav Rastogi
token_generator (https://github.com/bbommarito/token_generator)
BrianBommarito
ssl_requirement (https://github.com/retr0h/ssl_requirement)
Lars Smit
John...
2008 Jun 06
2
Scriptalicious: Ajax Inline Text Editor
Hi, I''m just starting out with Scriptalicious + Prototype, and I''ve
run into a problem.
I''m trying to create an Ajax.InPlaceEditor that combines the custom
size textbox, and the custom parameter (from the examples in the
scriptalicious documentation)
http://github.com/madrobby/scriptaculous/wikis/ajax-inplaceeditor
I''ve tried a couple different methods (one of
2006 Nov 04
6
Javascript form validation for In place editting in scriptaculous ?
Is there a way by which I can do form validation for form generated by In
Place Editting of scritaculous?
The reason is, I want to avoid server roundtrip for checks which I can
perform at browser.
Regards,
Jatinder
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://wrath.rubyonrails.org/pipermail/rails/attachments/20060828/ca882668/attachment-0001.html
2006 Mar 31
13
validation with in_place_edit_for
i''ve got an in place edit text box for some of my fields. my model has
validates_presence_of for the field but nothing happens. it works fine
in the scaffold when using the edit page, but nowhere else.
anyone have a solution to this?
--
Posted via http://www.ruby-forum.com/.
2007 Dec 19
2
undefined method `in_place_editor'
I''m trying to get Globalization to work using the globalize plugin.
In their sample application they use in_place_editor to edit the
translate strings.
<%= in_place_editor "tr_#{tr.id}",
:url => { :action => :set_translation_text, :id => tr.id },
:load_text_url => url_for({ :action => :translation_text, :id =>
tr.id })%>
</p>
I get the
2006 Feb 25
5
Setting character encoding - do I do it with Rails or lighttpd?
I have a page which validates "tentatively," because the validator
uses the default character encoding. None was specified apparently,
so it falls back to UTF-8. How and where do I specify the character
encoding?
Pat