Displaying 2 results from an estimated 2 matches for "alan0".
Did you mean:
alan
2008 Apr 20
3
Specifying class for form_remote_tag
I have a form_tag that is:
<% form_remote_tag :url => ''/tasks/new'', :class => ''edit_task'' do -%>
Everything is fine EXCEPT the class doesn''t get assigned to the form
tag. Any help would be appreciated...
Thanks,
Alan
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google
2008 Apr 16
8
Will acts_as_taggable_on_steroids and better_nested_set work together?
I am having this crazy problem where it ONLY shows up in testing.
This is my test code
<code>
def test_should_destroy
task1 = Task.new(:description => "tmp",
:done => false,
:user => User.find_by_login(''admin''))
assert task1.save
assert task1.destroy
end
</code>
This is my task model