Simon Strandgaard
Simon Strandgaard
What do you mean with "SELECT ALL", like a text where all text is selected?
In `TextFieldFormItem` and `TextViewFormItem`, maybe add an enum ala `tapBehavior = .selectText`. In `TextFieldCell.handleTap()` deal with the `tapBehavior` and select all the text. PR is welcome.
I can't remember. I think it's difficult to do live-updates with the UIKit textfield as the user types in text. Phone numbers are tricky and localized. Maybe UIKit textfield already...
Currently there are no way to deal with multiple selected options. If it's not in the example project, then it's not there. I appreciate PR very much. One way to...
Does it also happen in the Example app? I haven't seen this issue before.
Invoking `form_installSubmitButton()` and a "Submit" button gets shown in the navigation bar. It shows an alert with validation status. The `form_installSubmitButton()` can used during development for validating the form. When...
It seems to end up calling [TextFieldCell.reloadPersistentValidationState](https://github.com/neoneye/SwiftyFORM/blob/master/Source/Cells/TextFieldCell.swift#L362). This function invalidates a timer and hides an eventual error message shown below the textfield. Sorrry, I can't remember what I intended with...
Would this be helpful, where one can specify `alignment = .left` Or do you have something else in mind?
Theming is not something I have spent time on. I think it should be possible to style things with `UIAppearance`, but there are probably obstacles. I ought to make an...
Yes, the `init` code currently sets the fonts. It doesn't have to be like this, but I'm not sure what is best practice with theming. Maybe it's `UIAppearance` or a...