I have used sfmulti select control in grid control. Its works fine as per our requirement. But I am getting an below error message When I focus on "sfmulti select control".Please check the attached example code and advise how to resolve this issue.
Error Message :-
Syncfusion.Blazor.DropDowns.SfMultiSelect<int[],BlazorApp1.Pages.Index.TempSize>.GetDataObject(object)' is inaccessible due to its protection level
at CallSite.Target(Closure , CallSite , SfMultiSelect`2 , Object )
at System.Dynamic.UpdateDelegates.UpdateAndExecute2[T0,T1,TRet](CallSite site, T0 arg0, T1 arg1)
at Syncfusion.Blazor.DropDowns.SfMultiSelect`2.GetDataByValue(TValue dataValue)
at Syncfusion.Blazor.DropDowns.SfMultiSelect`2.InitialValueBind()
at Syncfusion.Blazor.DropDowns.SfMultiSelect`2.OnAfterScriptRendered()
at Syncfusion.Blazor.SfBaseComponent.OnAfterRenderAsync(Boolean firstRender)
at Syncfusion.Blazor.SfDataBoundComponent.OnAfterRenderAsync(Boolean firstRender)
at Syncfusion.Blazor.DropDowns.SfMultiSelect`2.OnAfterRenderAsync(Boolean firstRender)
at Microsoft.AspNetCore.Components.RenderTree.Renderer.GetErrorHandledTask(Task taskToHandle)
ScreenCast:-
https://www.screencast.com/t/SjKpf1pB
|
public class TempSize
{
public int SizeID { get; set; }
public string SizeName { get; set; }
} |
thanks working fine
but I have another issue.
Please check my comments in below screencast.
|
protected void onValueChange(ChangeEventArgs<int?, TempMaterialMst> args)
{
ToolsID = comboboxObj.Value;
// filter();
} |