Hello
I need to use something like Image Button in Grid that redirects the user to another page by clicking on it.
I used the following code but I can't change its icon and put my own icon.
Grid is dynamic and is set with ExpandoObject.
Please help.
Thanks
I need to use something like Image Button in Grid that redirects the user to another page by clicking on it.
I used the following code but I can't change its icon and put my own icon.
<GridCommandColumn>
<GridCommandButton Command="MyOwnCommand"
Icon="@SvgIcon.InfoCircle"
ThemeColor="@ThemeConstants.Button.ThemeColor.Tertiary"
OnClick="@MyCustomCommandOnClickHandler">click Me</GridCommandButton>
</GridCommandColumn>
Please help.
Thanks