[Rails] Charts in Rails 4 application

2014-03-02 Thread Manoj M.
Hi, Somebody advice me to find a better solution to implement charts in my Rails application. Which one is better 1) High charts 2) Fusion Charts 3) Open flash Charts i want to know whether these are free charts or paid service ? also pls let me know whether Open flash Charts c

[Rails] Best_in_place Gem in Ruby on Rails 2

2014-01-07 Thread Manoj M.
Hi, i have a need to do inline editing, so found best_in_place gem can be used for this. But my application is in Ruby on Rails 2, please anybody help me to find whether gem is compatible with ruby on rails 2. Thanks, Manoj Menon, RoR Developer, Maxxion Systems. -- Posted via http://www.ruby-foru

[Rails] Re: combining models

2014-01-03 Thread Manoj M.
Hi Ravi, Did you get solution ? Thanks, Manoj Menon RoR Developer Maxxion Systems. -- 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 unsubscribe from this group and stop receiving emails from i

[Rails] Re: JS response -pls help somebody

2013-12-13 Thread Manoj M.
Hi you can try respond_to do |format| format.js { render :js => "window.location.replace('#{new_product_url}');" } end Thanks Manoj Menon lekha p. wrote in post #1130416: > Hi all, > Pls help to find a solution : > > i have a form like following > <%= form_for @product , :url => products_ur

[Rails] Re: Merging two images.

2013-08-13 Thread Manoj M.
Dheeraj Kumar wrote in post #1118551: > You need ImageMagick. Play around with it. Then use RMagick to implement > the same thing in your ruby app. > > -- > Dheeraj Kumar Thank you, could you please explain more, Imagemagick is a gem? -- Posted via http://www.ruby-forum.com/. -- You received t

[Rails] Merging two images.

2013-08-12 Thread Manoj M.
Hi i need a help, I am using paperclip to deal with images. My new need is to merge image which is stored in s3 with another png image so i will get a new image and this merged image have to be saved in s3. How to do this pls help; Thanks, Manoj Menon. -- Posted via http://www.ruby-forum.

[Rails] Hash_Tag Client side Validation

2013-06-28 Thread Manoj M.
Hi anybody help me to find suitable validation way for Hash_Tag, My need is user should only type hash_tag like below format. a) #sports b) #sports,#news Please Help Me, Regards, Manoj. -- Posted via http://www.ruby-forum.com/. -- You received this message because you are subscribed to the Go

[Rails] Re: why we are Using self.method_name?

2012-11-28 Thread Manoj M.
Colin Law wrote in post #1086832: > On 28 November 2012 10:00, Manoj M. wrote: >> Whats is the idea behind using self.method_name ? please help > > The first hit in google for > ruby def self > is > > http://yehudakatz.com/2009/11/15/metaprogramming-in-ruby-its-al

[Rails] why we are Using self.method_name?

2012-11-28 Thread Manoj M.
Whats is the idea behind using self.method_name ? please help Thanks. -- 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@googlegroups.

[Rails] How to deploy my sample application

2012-10-19 Thread Manoj M.
Hi all, I heard i can deploy my sample application with the help of heroku... please help me how to do that? what are the steps to follow? Thanks manoj -- Posted via http://www.ruby-forum.com/. -- You received this message because you are subscribed to the Google Groups "Ruby on

[Rails] How to include html tag inside rails label tag

2012-10-12 Thread Manoj M.
Hello pls help me, below is my code Group * How to write this html code inside label_tag of rails am clear till *... label_tag 'Group',nil,:style=>'width:175px;text_align:left;float:left;font-weight:bold;font-size:13px;' My problem is how to include * into this labe

[Rails] Re: Re: Find the largest value of given 3 values

2012-09-18 Thread Manoj M.
rovin varshney wrote in post #1076418: > simply put all numbers in array and call max method. > > a=[2,3,4] > a.max yes Rovin ruby way :) -- 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

[Rails] Re: Find the largest value of given 3 values

2012-09-17 Thread Manoj M.
Maddy wrote in post #1076411: > Hi folks, > > Good day! > > *I want to find the largest value of given 3 values.* > > *Please suggest me,the simple ways of finding the largest value.* if a,b and c are numbers if(a>b) { if(a>c) {("a is largest")} else {("c is largest")} } else { if(b>c) {("b is la

[Rails] Re: flash[:notice] not working

2012-09-10 Thread Manoj M.
Loganathan S. wrote in post #1075308: > Paste your code... > > Sent from Samsung Mobile. Hi, here is my code below, @user is saved successfully but not flash doesnot works. I have wrote this in userscontroller if @user.save flash[:notice] = "Your account has been created." re

[Rails] flash[:notice] not working

2012-09-09 Thread Manoj M.
Hi, anybody please help me out,am using rails 3 but using this flash[:notice] doesnot works, i have used this in controllers. any idea ? please help. Regards, Manoj -- Posted via http://www.ruby-forum.com/. -- You received this message because you are subscribed to the Google Groups "Ruby

[Rails] Re: I wanna make a new rails community :)

2012-09-06 Thread Manoj M.
Hello tima, can i join with u guys, am also new to rails,. regards manoj -- 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@googleg

[Rails] Re: I wanna make a new rails community :)

2012-09-06 Thread Manoj M.
Tima wrote in post #1074602: > Hi everyone! I'm a newbie engineer. > > I started rails programming, but I'm learning alone and can't understand > other rails cord so much. > So I wanna have friend with other newbie rails engineers and share a > process of making apps. > It is not for sharing the "r

[Rails] Re: Validation in ruby on rails

2012-07-25 Thread Manoj M.
Ace S. wrote in post #1070147: > Manoj, > > Open up the console (rails c), and then create a new User (or whatever > model you want) like this: > > u = User.new > > Check if this user is valid: > > u.valid? > > This should result in false! if NOT, then you dont' have any errors. > Then > you have t

[Rails] Re: Validation in ruby on rails

2012-07-24 Thread Manoj M.
Ace S. wrote in post #1069974: > Hi manoj, > > I am replying to a message that you posted on the ruby-forum but didn't > show up in google groups. > > Anyway, did you put > > gem "dynamic_form" > > > > in your Gemfile? > And then after that, run 'bundle install' ? > Please do so and try again. > >