Skip to content

Commit

Permalink
Merge pull request #451 from djyotta/daniel/450-readonly-disabled-for…
Browse files Browse the repository at this point in the history
…-textarea

Daniel/450 readonly disabled for textarea
  • Loading branch information
lovasoa authored Jun 26, 2024
2 parents 9bcf1a5 + 56701d5 commit 7f8753e
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions sqlpage/templates/form.handlebars
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,8 @@
{{~#if maxlength}}maxlength="{{maxlength}}" {{/if~}}
{{~#if required}}required="required" {{/if~}}
{{~#if autofocus}}autofocus {{/if~}}
{{~#if disabled}}disabled {{/if~}}
{{~#if readonly}}readonly {{/if~}}
>
{{~#if value}}{{value}}{{/if~}}
</textarea>
Expand All @@ -62,6 +64,7 @@
{{~#if id}} id="{{id}}" {{/if~}}
{{~#if required}} required="required" {{/if~}}
{{~#if autofocus}} autofocus {{/if~}}
{{~#if disabled}}disabled {{/if~}}
{{~#if multiple}} multiple {{/if~}}
{{~#if (or dropdown searchable)}}
data-pre-init="select-dropdown"
Expand Down

0 comments on commit 7f8753e

Please sign in to comment.