i have table called "type" which contains data "family,individual" i want in some pages load individual only into type drop-down and in another pages load both

How can i do that??

Thanks in advance

link|improve this question

34% accept rate
feedback

1 Answer

up vote 0 down vote accepted

Yes. You can set the default in the model:

db.yourtable.yourfield.requires=IS_IN_SET(('family','individual'))

In any action you can do

db.yourtable.yourfield.requires=IS_IN_SET(('family'))
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.