Hello,
I noticed that when i put a textbox component inside a toolbar item template, it lost focus just when you select it, not letting you write inside the text area.
It works only if you keep pressing the mouse on the component and write in the meantimes.
<ToolbarItem Width="300px"> <Template> <div style="height: 46px; line-height: 23px; min-width: 300px;"> <div style="text-align: center;"> <SfTextBox @bind-Value="inputText"></SfTextBox> </div> <div class="text-child" style="font-size: 14px;">Tickets Type</div> </div> </Template> </ToolbarItem>
Please let me know if is possible to fix this..
thank you very much
best regards
<EditForm Model="modal">
<SfToolbar>
<ToolbarItems>
<ToolbarItem Width="300px" Type="ItemType.Input">
<Template>
<div style="height: 46px; line-height: 23px; min-width: 300px;">
<div style="text-align: center;">
@*<InputText @bind-Value="modal.textVal"></InputText>*@
<SfTextBox @bind-Value="inputText"></SfTextBox>
</div>
<div class="text-child" style="font-size: 14px;">Tickets Type</div>
</div>
</Template>
</ToolbarItem>
</ToolbarItems>
</SfToolbar>
</EditForm> |
Hello!
Thanks now it works perfectly.
Sorry for my mistake.
thank you very much!
Maurizio