[Rails] do you want to view only the webpage content that was deliev

2010-01-29 Thread Hamid Raza
How to disable it from code side so that user will not have to go to settings of IE and make it disable. code side solution is required. -- 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

[Rails] Re: Paypal Recurring using active merchant

2009-12-22 Thread Hamid Raza
Hi , i am also getting the same problem , have you resolved it or not and if some body else have any idea please do let me know. thanks in advance and kind regards, Hamid. -- Posted via http://www.ruby-forum.com/. -- You received this message because you are subscribed to the Google Groups

[Rails] Re: How to return List in web services througth ActionWebService

2009-06-24 Thread Hamid Raza
web_client_api :baby_wise , :soap, http://localhost:3000/baby_wise/api;, :service_name = 'baby_wise' these are the properties i defined in the client controller and baby_wise.get_baby_growth_articles(params[user_id],params[:new_update][new_update]) this is how m calling function of web

[Rails] How to return List in web services througth ActionWebService

2009-06-23 Thread Hamid Raza
I need to return list of objects(e.g. users, articles etc) through ActionWebService::API::Base class BabyWiseApi ActionWebService::API::Base api_method :is_new_update_available, :expects = [{:login=:string}, {:lastUpdatePerformed=:date}], :returns = [:boolean]

[Rails] Re: Urgent ! Need Web Services Help

2009-06-18 Thread Hamid Raza
@ Robert Walker : Thanks, let me tell you what is my problem , m using ActionWebService. and have two applications on is server and other is client. In server: I defined an api in which i have a function which will return list of articles, let me show u that decleration: api_method

[Rails] Urgent ! Need Web Services Help

2009-06-17 Thread Hamid Raza
I want to develop web services using ruby on rails , how can i , any help ? -- 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

[Rails] Re: Urgent ! Need Web Services Help

2009-06-17 Thread Hamid Raza
yup i searched and found this http://www.ibm.com/developerworks/opensource/library/os-ws-rubyrails/index.html but is there any other gem or plugin or way to make web services. -- Posted via http://www.ruby-forum.com/. --~--~-~--~~~---~--~~ You received this

[Rails] Getting and setting ruby tags in controller

2009-05-13 Thread Hamid Raza
I want to access the divs in the controller and want to change its attributes , is it possible in ruby on rails. plz help me out... -- Posted via http://www.ruby-forum.com/. --~--~-~--~~~---~--~~ You received this message because you are subscribed to the

[Rails] Plese have a look on this error and tell me y it comes

2009-04-29 Thread Hamid Raza
Drive\Ruby Projects\ramfruby script/generate model category by/lib/ruby/gems/1.8/gems/activesupport-2.3.2/lib/active_support/dependencies.rb:440:in `load_missing_constant initialized constant RAMF::OperationProcessorsManager (NameError) from

[Rails] Explicit Validation of Email in controller

2009-04-16 Thread Hamid Raza
hi all , i want to check/validate email in controller, with out using model . plz some one help me out. thx in advance -- Posted via http://www.ruby-forum.com/. --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google

[Rails] Re: Explicit Validation of Email in controller

2009-04-16 Thread Hamid Raza
help require :$4 -- 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

[Rails] Email validation in controller

2009-04-16 Thread Hamid Raza
hi all , i want to check/validate email in controller, with out using model . plz some one help me out. thx in advance -- Posted via http://www.ruby-forum.com/. --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google

[Rails] Please tell me what does this bug meanz ?

2009-03-29 Thread Hamid Raza
controller method is = def call @template = MailRoomTemplate.find(:all) @send_message = SendMessage.new end it is not going to views/send_messages/call and this error comes NoMethodError in Send messagesController#new undefined method `render' for #MailRoomTemplate:0x551d358

[Rails] Re: Please tell me what does this bug meanz ?

2009-03-29 Thread Hamid Raza
Frederick Cheung wrote: On Mar 29, 12:58�pm, Hamid Raza rails-mailing-l...@andreas-s.net wrote: and this error comes NoMethodError in Send messagesController#new undefined method `render' for #MailRoomTemplate:0x551d358 It means that controllers already have a magic instance variable

[Rails] Re: High Priority Problem , when uploading image

2009-03-11 Thread Hamid Raza
Freddy Andersen wrote: Could we get a look at the picture model? looks like it has issues at line 6 dear fellow , the problem is not with model or controller , as the code i have of application is running fine on another system , :s , i think its a problem with plugin :( -- Posted via

[Rails] High Priority Problem , when uploading image

2009-03-10 Thread Hamid Raza
i m uploading an image and found following error , plz n e buddi help me out , thxx in advace , my rails version is 2.2.2 and ruby version is 1.8.7 and i m using attachment_fu + mini_magick the error is Processing AdvertController#picture (for 127.0.0.1 at 2009-03-10 18:12:04) [POST]

[Rails] any body please help me

2009-03-10 Thread Hamid Raza
High Priority Problem , when uploading image Posted by Hamid Raza (hamidraza) on 10.03.2009 15:55 i m uploading an image and found following error , plz n e buddi help me out , thxx in advace , my rails version is 2.2.2 and ruby version is 1.8.7 and i m using attachment_fu + mini_magick

[Rails] how to get the value of Collection_select in controller

2009-02-15 Thread Hamid Raza
this is my view code %= f.collection_select(:user, :province_id , @provinces ,:id , :name) % and this is my controller code params[:user_province_id] it is giving nothing :( when i use observe field and use params[:user_province_id] in controller then it gives the value easily. but when i

[Rails] Re: how to get the value of Collection_select in controller

2009-02-15 Thread Hamid Raza
Maurício Linhares wrote: Use: params[:user][:province_id] - Maur�cio Linhares http://alinhavado.wordpress.com/ (pt-br) | http://blog.codevader.com/ (en) On Sun, Feb 15, 2009 at 9:40 AM, Hamid Raza Thanks a lot Maurício Linhares. It worked for me :) -- Posted via http