dyaliCode/svelte-formly

Readonly / disabled options

rawoke083 opened this issue · 2 comments

Hi , great library. How would one go about making fields readonly either at declaration or dynamically ?

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,
    ...
  }

Thank you