Elvis Nunez

Results 181 comments of Elvis Nunez

Another reason for why only displaying the validation errors inline might be a bad idea is because if it's a long form and the fields that are failing are off-screen...

The fact that the info bubble appears in a different form field seems like a bug. Might be nice to isolate in order to figure out a fix.

Regarding modifying the keyboard you have to use the form fields' `input_type`. These are the available mappings: https://github.com/hyperoslo/Form/blob/efde99850ce61586d8ce28c3a4c4875c7d637498/Source/Cells/Views/FORMTextField.m#L188-L219 And this is how each input type is configured. https://github.com/hyperoslo/Form/blob/2c7bae694f143ceb7f37196c48d9f02c2f9e2cbf/Source/Cells/Views/FORMTextFieldTypeManager.m

That would be a great feature @iosdev-republicofapps! Make a new cell class and register it in the FORMDataSource, if you need any help let me know :) https://github.com/hyperoslo/Form/tree/master/Source/Cells I'm also...

Hi @sedwo, What about doing: ```objc [self.dataSource updateValuesWithDictionary:@{stringKey: newStringValue}]; ``` Or could you share a bit more of your JSON structure? I think I could share an example on how...

@sedwo what type of field is the one you're trying to update? https://github.com/hyperoslo/Form/blob/master/Source/Models/FORMField.h#L10-L24

Hi Huy! Makes a lot of sense. Feel free to submit a pull request. Should be quite simple to get this in place. Otherwise I might take a look at...

Hi! I'm having a hard time understanding your bug report. Would you mind attaching a video showing the issue? I'm sure we can get it fixed :)

Hi @n8stowell82, Support for custom fields right now is very basic, custom fields aren't attached to the same validations than other fields, and don't receive the callbacks by default. I...