search for: linmark

Displaying 5 results from an estimated 5 matches for "linmark".

2006 May 08
4
How to disable textbox in Ruby?
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/.
2003 Oct 13
1
Ignore purge and delete command
Hi, Does anyone know how to ignore the purge or delete command from the imap clients. Actually I created a mail archive and using dovecot and so far I am happy with the performance. But the problem I am facing right now is I do not want the users to delete the mail by themselves and want to disable the purge or delete command. Thanks Vikrant
2006 Jan 04
0
thsi is my first question
Hi Everyone, Just been thinking and working on some problem in Supply Chain and came across a situation. This is like this using single table inheritance I have a single table called company and the active record are like this: class Company < ActiveRecord::Base class Vendor < Company class Customer < Company class Office < Company Then there is another class called Region which
2005 Dec 31
0
Looking for Ruby and rails in Grater China region (china/taiwan/Hong Kong)
Hi Everyone, I am located in Greater China region and working on rails and ruby on some personal project and looking for people who are doing same here. Vikrant
2006 Jan 13
4
Single Table Inheritance (this is my 3rd post :( )
Hi Everyone, I hope I get some feedback on my question. Here it goes. I have a situation here, I have a company table and then using Single Table inheritance it is of 3 types: class Company < ActiveRecord::Base end class Vendor < Company end class Customer < Company end class Agent < Company end Now I have a active record Association class QuoteSheet < ActiveRecord::Base