Hi Larry,
We have checked your reported query and to
resolve this issue, kindly use LoadAsync method in Created event of the
signature component shown as below.
<EditForm Model="@editorModel">
<DataAnnotationsValidator />
<div class="form-group">
<label for="employee-name">Employee Name:</label>
<SfTextBox ID="employee-name"></SfTextBox>
<ValidationMessage For="@(() => editorModel.Name)"></ValidationMessage>
<SfSignature Disabled=true @ref="chkInSignature" Created="OnCreated" style="width:500px;
height:200px"></SfSignature>
</div>
<SfButton>Submit</SfButton>
</EditForm>
………………………………….
private async Task OnCreated()
{
await chkInSignature.LoadAsync("your URL", 500, 200);
}
|
Get back to us if you need
any further assistance on this.
Regards,
YuvanShankar A
Attachment:
Index_138b59c8.zip