I just created a textbox together with a dynamic button with guide from the documentation.
https://blazor.syncfusion.com/documentation/textbox/how-to/create-components-dynamically/
I want to copy the input on textbox from user yet I have no idea how to do it. The only clue I have from the documentation was these lines below from @code.
I am wondering how to fix the codes here to get the input and save it as a string variable
public RenderFragment CreateTokenComponent() => builder =>
{
builder.OpenComponent(0, typeof(SfTextBox));
builder.AddAttribute(1, "Placeholder", "Token Input");
builder.CloseComponent();
};
The attachment contains images of my codes.
Thanks in advance.
Attachment:
qs_1580e38a.zip