Hi,
I hope it's ok to ask this kind of question.
My goal is to get some kind of numeric layout like a Numpad.
If I use the following code I get the wanted result.. (First Attachment)
@foreach (var item in ActionCodes)
{
<SfButton ID="my" CssClass="e-custom" Content="@item.Actioncode.ToString()"></SfButton>
}
When I try this with the ButtonGroup Component like..
<SfButtonGroup Mode="Syncfusion.Blazor.SplitButtons.SelectionMode.Single">
@foreach (var item in ActionCodes)
{
<ButtonGroupButton CssClass="e-custom" Content="@item.Actioncode.ToString()"></ButtonGroupButton>
}
CSS:
.e-custom {
border-radius: 0;
height: 100px;
width: 100px;
}
.. the component stays in its default style.
Is there any chance to achieve the same layout?
Thanks in advance!
Attachment:
ButtonGroupRequest_96c85a18.zip