Re: [Rails] problems with changing contents of a page

2012-06-02 Thread rocky
simply i want to use jquery in my rails apps so that the whole page will not refresh only the content part inside my page get changes...what is the solution for this and where i will have to use this...and any sample code for this??? -- You received this message because you are subscribed to t

[Rails] Re: validation not called on create, only update

2012-06-02 Thread dasibre
I have a model, Work, that when I create a new instance with incorrect field data does not call the validation methods. When I update an existing instance with the same incorrect fields the validation methods are called. The create action fails on the save method and re-routes to the new action, ca

[Rails] Re: problems with changing contents of a page

2012-06-02 Thread dasibre
Can you post the code you are using? On Jun 1, 7:17 am, "azizmb.in" wrote: > Hi > > Please format your question properly. > > > > > > > > > > On Fri, Jun 1, 2012 at 4:20 PM, rocky wrote: > > i have created a web page localhost:3000/subjects in rails and a > > button is there.if i click the b

[Rails] Re: isolated engine, routing helpers, testing?

2012-06-02 Thread James K.
Jonathan Rochkind wrote in post #1062792: > I believe there is no way using the standard supported Rails testing > framework to test routes from an `isolated` engine. Or to test helpers > that use these routes. Jonathan, This is effectively a guess, not knowing your environment or testing situat

[Rails] Re: agile roots group discount

2012-06-02 Thread Max
correction: the code is URUG12 -- 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@googlegroups.com. To unsubscribe from this group, send email to rubyonrails-talk+unsubscr...@googlegroup

[Rails] agile roots group discount

2012-06-02 Thread Max
HI all, I wanted to let everyone know, if you haven't made plans yet to come to the agile roots 2012 conference coming up this month you can get a 10% discount now! Just use the URUG code when you sign up and it'll give you the discount. check out the program and schedule - Mike Moore, Pat Maddo

[Rails] Re: Serialized attribute saved as HashWithIndifferentAccess in database

2012-06-02 Thread Matt Jones
On Friday, 1 June 2012 09:15:18 UTC-4, Espen Antonsen wrote: > > I fixed it by converting it to a hash: > @booking.custom_data = params[:booking][:custom_data].to_hash if > params[:booking][:custom_data] > > I do think that Rails should handle this automatically though. There is no > way to see

[Rails] Re: Is there a ftp crawler in ruby on rails?

2012-06-02 Thread Matt Jones
On Friday, 1 June 2012 17:04:42 UTC-4, Ruby-Forum.com User wrote: > > Hi, > > I'm a newbie to ROR. I wanted to write some code which can help me to > list and then index all the paths on a remote server. Is there a ftp > server crawler in ruby? > > Take a look at Net::FTP, in the standard lib