args.Single = true
is the right way to make it.
Striped
on a Table then it is easy to do, https://blazorise.com/docs/components/table
<DataGrid Striped="true">
@stsrki how is the € conversion going? :-)
haha, we'll know in a few more days
Good Morning - I have a Autocomplete component where I use @bind-SelectedText
to a string public string manufacturerAutocompleteText { get; set; }
<Autocomplete TItem="ManufacturerOutputModel"
@ref="manufacturerAutocomplete"
TValue="int"
Data="@manufacturers"
Filter="AutocompleteFilter.Contains"
TextField="@((item)=>item.Name)"
ValueField="@((item)=>item.Id)"
SelectedValueChanged="@OnManufacturersSelectedValue"
@bind-SelectedText="@manufacturerAutocompleteText"
NotFound="OnManufacturerNotFound"
Debounce="true"
DebounceInterval="500"
Placeholder="Select a Manufacturer...">
<NotFoundContent>
Unable to find the Manufacturer in the database.
</NotFoundContent>
</Autocomplete>
however, the string is always null? ANy ideas why the binding is not working here?
Blazorise.Components 1.1.5
in a .net7
app by the way