There is an issue with the latest release of Rails and AjaxScaffold. Well actually the problem is in a conflict between Prototype and Rico Corner, if you find that all the AJAX stops working – lots of spinning indicators and not much else you have three choices, wait a little and we will likely release [...]
Thursday, December 28, 2006
I have been asked a few times for the code for the FCKeditor demo. So I thought I would put it up here for anyone to download, and by here I mean here. The tar includes the fckeditor plugin, the ajax scaffold plugin and the bits to get them working together. You will need to [...]
Monday, December 18, 2006
A few people have said they have been having problems with the text area not appearing in Firefox. This isn’t a problem I have had but for those of you who have, thanks to James Penny there is a solution….. Simply add something like :width => ‘400’, :height => ‘200’ to the fckeditor_textarea call and [...]
I released a new version of the FCKeditor plugin today. It contains a couple of changes to the controller to fix a potential security issue and also a remote_form_for helper so that now you can do this: <% fckeditor_remote_form_for :note, :url => @options.merge(:controller => ‘notes’), :editors => { :note => ['text'] } do |f| %> [...]
Tuesday, November 28, 2006
So a couple of weeks ago we (Cominded) put up RailsPays, a free job board for Rails jobs in the UK. These can be anything – full time, part time, contract, etc so long as they are to do with Rails. I have to admit the idea was driven by the trouble we have had [...]
Saturday, October 28, 2006
I”ve been asked a couple of times how to dynamically setup the columns displayed by the AS plugin dependant on the permissions of the user, so I though a quick post would be a good idea. Basically its very simple, you simply define a hash of all the columns you potentially wish to display keyed [...]
I released a new version of the plugin today that fixes a few outstanding issues and adds 3 new extension points. The main things that have been fixed are: Single table inheritance now works Legacy table names are now supported The table formats properly under IE The 3 extra extra extension points are do_new do_edit [...]
This release tidies up some of the things I thought I’d got right with the last one, doh. However, it turns out I had overlooked the paths for the spell check and the resource manager. Both of these now dynamically configure so that you can place your install anywhere you fancy. Unfortunately there is a [...]
Thursday, September 28, 2006
So you’ve seen Ryan Daigle’s article on ResourceFeeder and you want all that RSS goodness. However, you are using Rails 1.1.6 and don’t want to move to edge at the moment. All you need to do is install the ResourceFeeder and SimplyHelpful plugins: ./script/plugin install resource_feeder ./script/plugin install simply_helpful
Wednesday, September 27, 2006
This release fixes an issue with the base path to the editor being hardcoded into the helper. The problem arose when hosting an app using named virtual hosts and aliases. e.g. hosting your app at www.mydomain.com/scotts/railsapp instead of www.mydomain.com/railsapp. This should now all work……..