You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have problem to execute code after package update to version 6.
Before version 6 I was able to use inside ReadComponent
var component = new GridUpdateComponent<MyItemType>()
{
Item = Item
};
await GridComponent.UpdateItem(component);
After I upgraded version to 6 it is not possible.
I tried, but it throws exception regarding IJSRuntime
var component = new GridUpdateComponent<MyItemType>()
{
Item = Item
};
GridComponent<MyItemType> c = new GridComponent<MyItemType>();
await c.UpdateItem(component);
Do you know what is the new way how to do it ?
Thanks
EDIT:
For now I solved this problem by creating my new component with "also" [CascadingParameter] of GridComponent property.
The text was updated successfully, but these errors were encountered:
Hello.
I have problem to execute code after package update to version 6.
Before version 6 I was able to use inside ReadComponent
After I upgraded version to 6 it is not possible.
I tried, but it throws exception regarding
IJSRuntime
Do you know what is the new way how to do it ?
Thanks
EDIT:
For now I solved this problem by creating my new component with "also"
[CascadingParameter]
ofGridComponent
property.The text was updated successfully, but these errors were encountered: