[Rails] To display a button onselect of an option from dropdown

2010-06-09 Thread Venu Gopal
Hi Is there an option of displaying a button only when you select an option from dropdown. -- 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] To Display save button , when we select an option from drop

2010-06-09 Thread Venu Gopal
Hi I need help regarding displaying of a save button when we select some thing from the drop down. -- 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] Re: Element.insert_html is not function

2010-06-02 Thread Venu Gopal
Hi, I inserted required java script files in my html page that is new.html.erb Plaese verify the file... #Projects/new.html.erb % form_for :project, :url = projects_path do |f| % p Name: %= f.text_field :name % /p div id=tasks %= render :partial = 'task', :collection =

[Rails] Generating Dynamic text box

2010-06-01 Thread Venu Gopal
#Project controller class ProjectsController ApplicationController def index @projects = Project.find(:all) end def new @project = Project.new @project.tasks.build end def create @project = Project.new(params[:project]) if @project.save flash[:notice] = Successfully created

[Rails] Can not call RJS and throwing error

2010-06-01 Thread Venu Gopal
I created controllers of project and task and appropraite html pages for them and created two partials of fields and tasks and having link in fields partial, when i call it it is throwing RJS error, please find the code below and mention a solution for geting text box dynamically My Html page

[Rails] Re: Single sign on

2008-11-05 Thread venu gopal
Thank you for your reply. I m using HTTP Basic authentication in my application. And i have one more doubt with Curl + Single sign on, Now i use username password for all commands(Like POST,PUT,DELETE,GET) to create,update,delete and read my data. Is it possible to maintain the

[Rails] Re: Single sign on

2008-11-04 Thread venu gopal
hi, I'm using asp.net application and i access this from cURL .Now i want to know,how to use single sign on in cURL. Reply as soon as possible --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Ruby on Rails: Talk