Hint not showing when using SfComboBox as Input View

Hi,
i got a problem with the SfTextInputLayout having a SfComboBox as Input View. The Hint is not showing.

My XAML Code.

<!--  ComoboBox to get Login Type from user  -->
<sfTextInputLayouts:SfTextInputLayout Margin="0" 
                                        IsHintAlwaysFloated="True"
                                        ShowHint="True"
                                        EnableFloating="True"
                                        Hint="{trans:Translate Text='Label_LoginTypes'}"
                                        HelperText="Please choose your Sign In Type."
                                        ShowHelperText="True">
    <sfComboBoxes:SfComboBox DataSource="{Binding SignInTypes}" 
                                DisplayMemberPath="Translation" 
                                EnableAutoSize="True" 
                                SelectedItem="{Binding SelectedSignInType}"/>
</sfTextInputLayouts:SfTextInputLayout>

<!--  Entry to get Server URL from user  -->
<sfTextInputLayouts:SfTextInputLayout Margin="0" 
                                        IsVisible="{Binding ServerUriVisible}"
                                        ReserveSpaceForAssistiveLabels="False"
                                        IsHintAlwaysFloated="True"
                                        HelperText="Please enter the Server URL."
                                        ShowHelperText="True"
                                        Hint="{trans:Translate Text='Label_ServerUri'}">
    <Entry Text="{Binding ServerUri}"/>
</sfTextInputLayouts:SfTextInputLayout>

<!--  Entry to get Username from user  -->
<sfTextInputLayouts:SfTextInputLayout Margin="0" 
                                        ReserveSpaceForAssistiveLabels="True"
                                        HelperText="Enter your login name."
                                        ShowHelperText="True"
                                        IsHintAlwaysFloated="True"
                                        Hint="{trans:Translate Text='Label_Username'}">
    <Entry Text="{Binding Username}"/>
</sfTextInputLayouts:SfTextInputLayout>

<!--  Entry to get password from user  -->
<sfTextInputLayouts:SfTextInputLayout Margin="0"   
                                        ReserveSpaceForAssistiveLabels="False"
                                        IsHintAlwaysFloated="True"
                                        HelperText="Enter your password."
                                        Hint="{trans:Translate Text='Label_Password'}"
                                        EnablePasswordVisibilityToggle="true">
    <Entry IsPassword="True" Text="{Binding Password}"/>
</sfTextInputLayouts:SfTextInputLayout>

Attached a screen shot of the Output on a S8.
    
Does anyone have an idea?

Thanks
Andreas

Attachment: Screenshoot_7b94bfb1.zip

1 Reply

SS Sridevi Sivakumar Syncfusion Team July 31, 2020 03:42 PM UTC

Hi Andreas Sprengard,

Greetings from Syncfusion.

We would like to inform you that your update and screenshots are not related. Screenshot seems to be have an issue with Helper text but in update seems like hint text. Could you please confirm us?

With the provided code snippet, we have checked with preparing the simple sample but itself it has been worked fine meant it displays both hint and helper text. Please find the screenshot

Screenshot:



Because we are in COVID-19 loackdown, we don’t have a S8 device now. We have requested the team to have that to test with that too. Currently the testing has been made on MI 5A and MI A3 devices.
 
 
Regards,
Sridevi S.
 


Loader.
Up arrow icon