Merge branch 'feature/entryType_additionsForEntryTextfield' into 'develop'

phone pad support added for TextEntryfield

See merge request BPHV_MIPS/mvm_core_ui!552
This commit is contained in:
Pfeil, Scott Robert 2020-08-03 11:34:07 -04:00
commit 79fbac59c6
2 changed files with 4 additions and 0 deletions

View File

@ -323,6 +323,9 @@ import UIKit
case .email:
textField.keyboardType = .emailAddress
case .phone:
textField.keyboardType = .phonePad
default:
break
}

View File

@ -18,6 +18,7 @@
case number
case email
case text
case phone
}
//--------------------------------------------------