search for: height1percent

Displaying 11 results from an estimated 11 matches for "height1percent".

2006 Feb 25
31
Ajax Scaffold Generator for Rails Released
...f the Ajax Scaffold Generator (for Ruby on Rails). The generator creates a scaffold page like the typical rails one, except adding, editing and deleting are all done inline. The generated scaffold is valid XHTML strict and fully styled right out of the box. Check out the demo: http://ajaxscaffold.height1percent.com/ And the how-to: http://www.height1percent.com/articles/2006/02/21/on-the-new-ajax-scaffold-generator Its a generates a much better starting point for an Ajax''ified application or for any application than the existing scaffold generator. I hope you guys find it useful. Thanks. -- Ri...
2006 Mar 04
4
AjaxScaffold 2.2.0 released with graceful JS degredation
Just wanted to let anyone know that might have checked out the generator before and couldn''t use it b/c you''re project required graceful degredation. Well its in there now. Thanks everyone and enjoy. Demo: http://ajaxscaffold.height1percent.com Release Notes: http://www.height1percent.com/articles/2006/03/04/ajaxscaffold-2-2-0-released-with-graceful-js-degredation -- Richard White Interface Designer Blog | www.height1percent.com Easy to use online calendar | www.kiko.com Keep in touch with relatives | www.youlookfamiliar.com -------...
2006 Apr 30
3
require "ajax_scaffold" in model error
Hi there, I''ve got installed ajax_scaffold_generator (3.1.2, 2.2.1) Anyway I''m following the example here <http://height1percent.com/ articles/2006/04/18/ajaxscaffold-3-1-0-released> which suggests the following in a model file: -------------------------------------------------------- require ''ajax_scaffold'' class Pet < ActiveRecord::Base belongs_to :person, :foreign_key => "owner_id&qu...
2006 Apr 21
1
Simple debugging solution for RJS templates
I know I love the new RJS templates but the one annoying thing is that I don''t get the nice Rails error pages anymore when something goes wrong. I wrote up an article with a code snippet for fixing that. Hopefully it will help out some of those as frustrated as I was. http://www.height1percent.com/articles/2006/04/21/improving-debugging-for-ajax-and-rjs -- Posted via http://www.ruby-forum.com/.
2006 Mar 15
1
AJAX + Rails question
We display a set of users in a TABLE. The rows have buttons that allow a user to be Deleted and marked as Super user. When any of these buttons get clicked, we would like that individual row to be either deleted or updated to reflect the new status. How do we achieve this using AJAX in Rails? Thanks, Yash -- Posted via http://www.ruby-forum.com/.
2006 Apr 12
8
Ajax Scaffold 3.0.0 released
Hey everyone, I just put up the 3.0.0 release notes. The major changes in this release are: * Everything has been converted to work with the newly released (Rails 1.1+) RJS templates * Sorting and Pagination have been added. http://www.height1percent.com/articles/2006/04/12/ajaxscaffold-3-0-0-released Thanks and enjoy. Rich -- Posted via http://www.ruby-forum.com/.
2006 Apr 10
0
302 Redirect + XMLHttpRequest = ARGH!!1
I''ve looked at various sources for how to handle 302 redirects but they all seem to be fundamentally flawed, ie don''t work at all. I''ve writted a much more verbose writeup of my problems on my blog and rather than repeat that here just go there. http://height1percent.com/articles/2006/04/10/http-302-redirects-xmlhttprequests-argh-1 Thanks -- Posted via http://www.ruby-forum.com/.
2006 Mar 10
8
multiple sub categories (parent-child)
hi. base from the cookbook example, where each categories can have many recipes, id like the categories to have multiple sub categories, unlimited levels. please show some code, as i am new to Ruby and Ruby On Rails. thanks -- Posted via http://www.ruby-forum.com/.
2006 Apr 25
5
to ajax or not to ajax
before I started building my latest rails app, I made the decision to make good use of ajax. My reasonsing was that users would benefit from the quicker page updates - the application provides various different types of insurance quotes, and has several multi-page forms and reports that can be drilled down 5 or 6 levels deep in some cases - so it seemed like a good candidate for ajax Now
2006 May 11
5
crating a ajax datagrid
hi, Im looking to build a live data grid, where you can add delete rows using dhtml. and was just wondering if anyone is aware of any plugin''s taht may help me. Ive found this example but if anyone is aware of any other plugin''s please let me know http://unspace.ca/datagrid/update thanks scott -- Posted via http://www.ruby-forum.com/.
2006 May 10
6
Migrations don''t really support transactions
...my migration, I can''t just re-run the migration since my schema doesn''t match what the migration is expecting. I also can''t migrate down since it seems like the up migration wasn''t recorded. Here is a link to another write-up about this same problem. http://www.height1percent.com/articles/2006/02/18/on-the-need-for-more-robust-rails-migrations Am I missing something or is there really no way to protect the DB from failed migrations? It can be a real pain to go into the DB an manually fix everything in order to run the migration after an exception. Does anyone have an...