Readonly / disabled options
rawoke083 opened this issue · 2 comments
rawoke083 commented
Hi , great library. How would one go about making fields readonly either at declaration or dynamically ?
kamalkech commented
Thank you to choose my library for your projects
For your question, you need to :
1- Update to svelte-formly@0.0.18
2- Add attribute "readonly" to your field like :
{
...
readonly: true,
...
}
rawoke083 commented
Thank you