Bug fix for CXTDT-129481. When we select the first date from date drop down, the time drop down is not appearing until we select anther date again from the date drop down

This commit is contained in:
Krishna Kishore Bandaru 2020-10-20 18:13:35 +05:30
parent 5cf575a12f
commit d9f937c052

View File

@ -81,7 +81,9 @@ open class ItemDropdownEntryField: BaseDropdownEntryField {
guard !pickerData.isEmpty else { return }
if setInitialValueInTextField, let pickerIndex = pickerView?.selectedRow(inComponent: 0) {
observeDropdownChange?(text ?? "", pickerData[pickerIndex])
text = pickerData[pickerIndex]
itemDropdownEntryFieldModel?.selectedIndex = pickerIndex
}
}