Hi, I want to disable textbox in my page so that user can not modify its contents. How can we do that in ruby? Thanx, Prash -- Posted via http://www.ruby-forum.com/.
This is not related to ruby but html. Please change the view code to make it enable or disable. Prashant Tiwari wrote:> Hi, > I want to disable textbox in my page so that user can not modify its > contents. How can we do that in ruby? > > Thanx, > Prash >
<input type="text" disabled="disabled" value="blah" /> -Nathan On 08/05/06, Vikrant Rathore <vikrant@linmark.com> wrote:> This is not related to ruby but html. > > Please change the view code to make it enable or disable. > > Prashant Tiwari wrote: > > Hi, > > I want to disable textbox in my page so that user can not modify its > > contents. How can we do that in ruby? > > > > Thanx, > > Prash > > > > _______________________________________________ > Rails mailing list > Rails@lists.rubyonrails.org > http://lists.rubyonrails.org/mailman/listinfo/rails >
On Monday, May 08, 2006, at 3:51 PM, wrote:><input type="text" disabled="disabled" value="blah" /> > >-Nathan > >On 08/05/06, Vikrant Rathore <vikrant@linmark.com> wrote: >> This is not related to ruby but html. >> >> Please change the view code to make it enable or disable. >> >> Prashant Tiwari wrote: >> > Hi, >> > I want to disable textbox in my page so that user can not modify its >> > contents. How can we do that in ruby? >> > >> > Thanx, >> > Prash >> > >> >> _______________________________________________ >> Rails mailing list >> Rails@lists.rubyonrails.org >> http://lists.rubyonrails.org/mailman/listinfo/rails >> >_______________________________________________ >Rails mailing list >Rails@lists.rubyonrails.org >http://lists.rubyonrails.org/mailman/listinfo/railsor... <%= text_field ''object'', ''method'', "disabled"=>"disabled" %> _Kevin -- Posted with http://DevLists.com. Sign up and save your mailbox.
Seemingly Similar Threads
- How to check for presence of particular value entered ?
- Can anybody tell me step by step how validate data on form?
- How to find particular pattern in string?
- pls help me regarding Maths round up function.....
- How to get difference between two dates in days???