Welcome to the Blazor feedback portal. We’re happy you’re here! If you have feedback on how to improve the Blazor, we’d love to hear it!

  • Check out the features or bugs others have reported and vote on your favorites. Feedback will be prioritized based on popularity.
  • If you have feedback that’s not listed yet, submit your own.

Thanks for joining our community and helping improve Syncfusion products!

1
Vote

I have noticed that If I use a Placeholder with FloatLabelType.Always to create a label for a text box, it is not possible to copy the text of the placeholder in the rendered web page.  

However, if I use a standard <label/> tag, I can copy the text in the label.

The reason that I'd like to be able to do this is that sometimes I include hints in the Placeholder text that I'd like my users to be able to copy and paste into the text box.

I'm not sure if this is a bug or feature request.  Is there a reason that Placeholder labels cannot be copied in the rendered web page?

<EditForm Model="register">
    <div>
        <SfTextBox Value="FirstName" Placeholder="This
label CAN'T be copied" FloatLabelType="FloatLabelType.Always"></SfTextBox>
    </div>
    <div>
        <label>This label CAN be copied</label>
        <SfTextBoxValue="Last Name"></SfTextBox>
    </div>
</EditForm>

Empty