Skip to content
Snippets Groups Projects
Commit 6f7275fd authored by jojohoch's avatar jojohoch
Browse files

Implement readonly for `TextFieldSimpleComponent`

parent 9a984425
No related branches found
No related tags found
No related merge requests found
Player Player
====== ======
1.20.0 1.20.0
- Implement readonly fot text fields of cloze elements
- Fix height of elements with dynamic positioning and fixed size - Fix height of elements with dynamic positioning and fixed size
- Fix dimensions of image elements with dynamic positioning and fixed size - Fix dimensions of image elements with dynamic positioning and fixed size
- Fix display of fixed size dynamic elements on iPad - Fix display of fixed size dynamic elements on iPad
......
...@@ -15,6 +15,7 @@ import { TextFieldSimpleElement } from './text-field-simple-element'; ...@@ -15,6 +15,7 @@ import { TextFieldSimpleElement } from './text-field-simple-element';
[style.font-weight]="elementModel.fontProps.bold ? 'bold' : ''" [style.font-weight]="elementModel.fontProps.bold ? 'bold' : ''"
[style.font-style]="elementModel.fontProps.italic ? 'italic' : ''" [style.font-style]="elementModel.fontProps.italic ? 'italic' : ''"
[style.text-decoration]="elementModel.fontProps.underline ? 'underline' : ''" [style.text-decoration]="elementModel.fontProps.underline ? 'underline' : ''"
[readonly]="elementModel.readOnly"
[formControl]="elementFormControl" [formControl]="elementFormControl"
value="{{elementModel.value}}"> value="{{elementModel.value}}">
`, `,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment