1,312 reputation
211
bio website mindfiresolutions.com
location India
age 22
visits member for 6 months
seen 9 hours ago
stats profile views 97

A Programming enthusiast who fell in love with Ruby on Rails recently. Loves programming in the way it is supposed to be. :)

Currently working with Mindfire Solutions Pvt Ltd as Ruby on Rails developer.


1d
comment Iterate through records in view and create text_fields
Can you please provide a bit more information? Which form you want to add those fields, I mean in the family form or somewhere else? how do you want to access them in controller etc.
2d
comment Multiple select in jQuery
you can clone option for such cases.
2d
comment fields_for in the show view, nested attributes
try replacing fields_for line with f.fields_for :answers, @question.answers.build do |builder|
2d
answered Dynamic css - wrong content type
2d
comment Dynamic css - wrong content type
try <link href="<%= get_css_path(:format => :css) %>" media="screen" rel="stylesheet" type="text/css" />
2d
comment Get fullpath from paperclip
Try this in your controller or views URI.join(request.url, file.url(style)) where file is the returned image object.
2d
comment Get fullpath from paperclip
Do you want fullpath (/home/xyz/your-application-name/public/images/11/1.jpg) or the full url (your-domain/images/11/1.jpg)?
Jun
15
comment How create new instance of a model in relation many to many?
@Teo great :) you are welcome.
Jun
15
answered How create new instance of a model in relation many to many?
Jun
14
comment Why am I getting “wrong number of arguments (2 for 0..1)” in Rails?
Can you please post the error stack.
Jun
14
comment Rails: after_update
Once you have updated the table row then delete_item will get the newly updated item there, hence it will delete the new item. To delete the old item you may need to use before_update.
Jun
13
comment Updating table fields with button click
So can you please update your question with the use-case. e.g A room can be assigned to one user or more?
Jun
13
comment Updating table fields with button click
And if you are not going to save it anywhere and you don't need to hit the server to update the html table with the chosen room. Simply use jquery/javascript to update the column with selected value.:)
Jun
13
comment Updating table fields with button click
what if he choose the room and update. And then he revisits the page and as it is not saved in DB, he will never find the room he chose.
Jun
13
comment Updating table fields with button click
Do you want to save the room preference to database and update the table in your view, right?
Jun
13
revised What is the best known option to dynamically add model fields in nested form?
added 54 characters in body
Jun
13
answered What is the best known option to dynamically add model fields in nested form?
Jun
13
answered How do I create an anchor in rails?
Jun
13
comment Datepicker not appearing for multiple time
You are right @martin :)
Jun
13
comment Datepicker not appearing for multiple time
you are welcome @GaneshKunwar :)