search for: rails_ajax_table

Displaying 4 results from an estimated 4 matches for "rails_ajax_table".

2006 May 06
7
New Ajax and Rails tutorial
Hi, I just published the first version of a small tutorial I''ve written on Ajax and Rails. It is called "How to paginate, sort and search a table with Ajax and Rails" (sorry, I didn''t manage to find a longer title !) and is available at : http://dev.nozav.org/rails_ajax_table.html There is nothing really new in it, it''s rather a compilation and adaptation of several Rails wiki pages. As I am neither a Rails expert nor a native english speaker, I would greatly appreciate any feedback. Thanks, Julien -- Posted via http://www.ruby-forum.com/.
2006 Jun 21
1
sortable tables not working because of html escaping
i just went through the following tutorial on creating a sortable table: http://dev.nozav.org/rails_ajax_table.html it appears to work as it is supposed to except for the fact that my links are being written wrong. the "&" symbol is being replaced with & therefore creating this as my url: http://localhost:3000/item/list?sort=qty&query= instead of http://localhost:3000/ite...
2006 Aug 01
3
paginate, search, sort with ajax problem
hello I hope somebody can help me figure this out. found this great tutorial at http://dev.nozav.org/rails_ajax_table.html. got it working except for one thing. I can''t seem to make the pagination work. The link_to_remote defined in the helper is pointing to the wrong url. I have set up things like so: defined a search method in de project_controller located in apps/admin/project. In de tutorial the...
2006 Jul 28
8
Building a Search Page as part of CRUD
I''ve been experimenting with Rails over the past couple of days and have come across something that seems harder than it should be. In previous frameworks I have used (WebObjects, php) a full search page (which leads into a list view populated with search results) was part of the CRUD that was either dynamically or statically created after specifying table/object schema. In