Using the Duplicate button but would like some fields made read only
Using the Duplicate button but would like some fields made read only
This question has an accepted answers - jump to answer
This discussion has been closed.
This question has an accepted answers - jump to answer
Answers
After you call
.mode('create')
, you could then make calls todisable()
orfield().disable()
to disable the fields you don't want the user to be able to write to.Remember to then re-enable them once the submission is complete, or possibly in
open
for future edits.Allan
Thanx very much Allan, works perfectly