search for: aashish

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

Did you mean: ashish
2009 Sep 26
3
how to pass value to method in controller
how to pass value to method in controller using button_to_remote button_to_remote ''check avaliability'', :url => { :action => ''check_for_unique_login'', :login => @user.login} above code is not working. -- Posted via http://www.ruby-forum.com/.
2011 May 04
5
rails mongoid
...cument field :name end Now in rails console, If you do user = User.new user[:name] = "xxxx" user[:firstname] = "yyyy" user.save The record gets created with name and firstname fields. But i havent declared firstname field in model. Can anyone please help me out. Thanks, Aashish -- Posted via http://www.ruby-forum.com/. -- 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-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org To unsubscribe from this group, s...
2010 Jun 15
3
RoutingError
...ccount. 22: %p 23: - form_tag(user_contact_path(@user.id), :method => "post") do 24: = file_field_tag "file" 25: = submit_tag 26: .span_2 -------------------------------------------------------------------------------- thank you, aashish -- Posted via http://www.ruby-forum.com/. -- 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-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org To unsubscribe from this group, se...
2002 Sep 13
1
Samba 2.23 ACL support ?
...ulate same thing on samba? b) Also how can i add users with all groups they are in it on the fly? c) Using winbind how can I solve problems of ACLs?? As this project has got tight deadlines, I will be very much grateful to you, if you can help me solve these probs. Thanks for your help, Regards, Aashish -----Original Message----- From: samba-request@lists.samba.org [mailto:samba-request@lists.samba.org] Sent: 19 August 2002 11:25 To: Narkar, Aashish (CAP, GCF) Subject: Mailman results for samba ***** help Help for samba mailing list: This is email command help for version 2.0.11 of the &quo...
2009 May 12
2
rails 2.3.2 is not generating environment.rb properly
problem: rails 2.3.2 is not generating config.action_controller.session_store = :active_record_store in environment.rb this is the code in environment.rb --------------------------------------------------------------------------- # Be sure to restart your server when you modify this file # Specifies gem version of Rails to use when vendor/rails is not present RAILS_GEM_VERSION =
2011 Jul 12
1
High density scatter plot with logarithmic binning
How can perform logarithmic binning in the scatterplot? I could only take the log of the variables and plot them, but I am sure that is not the way. I have a very huge data, and would want to plot those high density scatterplots and code then with different colors for the bins/density. -- View this message in context:
2011 May 08
0
Mongoid rails 3
...ory Now I have a form in view. In view, when user chooses a category, an ajax request is made to get dependent subcategories. But problem is, it is returning empty array in response(this is using mongohq). It is working normally as expected when using local mongodb. Can anyone help me. Thanks, Aashish -- Posted via http://www.ruby-forum.com/. -- 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-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org To unsubscribe from this group, s...
2011 Sep 25
0
paperclip content_type error
Hi all, I am using rails 3.1 with paperclip. when I try to upload a picture of type ''jpeg''. picture_content_type value not a image/jpeg. It is storing some Xadsfdsfdasfc value. I dont get the problem. can you help me. thanks, Aashish -- Posted via http://www.ruby-forum.com/. -- 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-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org To unsubscribe from this group, s...
2011 Mar 14
2
how to create a form using ruby on rails
*since i''m totally new to this technology , im facing lots of difficulties here.* * * *i want to create a form with few fields which shud be connected to mysql database using ruby on rails. can anyone help me with this difficulty?* * * *thanks..* * * *regards * * * *mandrekar salim* -- You received this message because you are subscribed to the Google Groups "Ruby on Rails:
2011 Oct 27
0
error installing character-encoding gem on ubuntu 11.10 64bit
Hi all, I have error installing character-encoding gem on ubuntu 11.10 64bit. The error details are in following link http://pastie.org/2768063 -- Posted via http://www.ruby-forum.com/. -- 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
2012 Jan 19
0
Problem in testing with separate validation of :attachment_file_name
Using: RSpec, Shoulda, Paperclip (including matchers) Example Model class Example < ActiveRecord::Base has_attached_file :attachment validates_attachment_presence :attachment validates_format_of :attachment_file_name, :with => /\.(png|jpe?g)$/ end Example Test require ''spec/helper'' describe Example do it { should validate_attachment_presence(:attachment) }