Hi,
How do I set the default number of decimal places for all "NumericTextBoxes" to 2.
Currently all NumericTextBox decimal places are default to 3.
I have multiple Grids with decimal columns which can be edited Inline.
<GridColumn Field=
"@nameof(Item.Price)"
Title=
"Price"
DisplayFormat=
"{0:N2}"
/>
All numeric textboxes in edit mode are set to 3 decimal places.
Why is the default three decimal places?
The following code leads to an infinite loop and call stack exhaustion.
How to use the grid with an ObservableCollection as data source?
@page "/Test"
@using System.Collections.ObjectModel
<
TelerikGrid
Data
=
"_data"
Pageable
=
"true"
OnRead
=
"@Read"
/>
@code {
private readonly ObservableCollection<
object
> _data = new();
protected Task Read(GridReadEventArgs args)
{
Console.WriteLine("Read");
_data.Add(new());
return(Task.FromResult(0));
}
}
If you look at the two attached screen shots. The date range picker is initialized with a start and end date. If the start date is changed, the end date is reset to 1/1/0001.
I have configured the date range picker as:
<
TelerikDateRangePicker
@
bind-StartValue
=
"@NewRecSet.StartDate"
@
bind-EndValue
=
"@NewRecSet.EndDate"
Min
=
"DateTime.Today"
/>
My expectation is that the end date should not change from what was set as the initial value.
I was wondering if anyone has tried a more advanced drawer template that works with a collapsible hierarchy menu that is still fully useable in its collapsed form?
The menu found in TFS / Azure DevOps is an excellent example of something like this. The selected section shows all the subsections and other sections become flyouts for the subsection.
A combo of the Drawer and TreeView or Context Menu might work well for this scenario
In my button group, I have a set of buttons, where only one button at a time is allowed to be checked.
I would like to add a separator between specific buttons, just to make the UI easier to read.
I don't see a <ButtonGroupSeparator> or <ButtonGroupSpacer> element.
Is adding a CSS style, that increases the left or right padding, to specific <ButtonGroupButton> the best approach?
I have 3 sections A, B and C. Each is a tilelayoutitem. I have to calculate the rowspan for each with a C# function. for example section A has 47 rows, B has 17 and C has 9. below is the snippet. when it renders there is a bunch of whitespace after the 47 rows in section A, a moderate about for the 17 rows in B and C shows up fine with only a little bit of whitespace. I don't know how to make each tilelayoutitem fit its content properly. thanks
@foreach (var item in Groups)
{
<TileLayoutItem HeaderText="@item" ColSpan="6" Class="tile-with-overflow" RowSpan="@CalculateRowSpan(@item)">
<Content>
<SaleDetail Group="@item" FormatDetails="@SalesFormatDetails"></SaleDetail>
</Content>
</TileLayoutItem>
}
Hi,
UI for Blazor does not have a native Map component. I have managed to include a Kendo UI for jQuery Map component in my Blazor WASM project but now want to bind the markers to data provided by the Blazor page hosting the component. Is this possible? If so how, if not what are the alternatives?
Regards
I'm essentially trying to achieve what's been solved for Kendo UI for JQuery in Blazor Grid: https://docs.telerik.com/kendo-ui/knowledge-base/grid-ellipsis-text-show-tooltip
"How can I show ellipsis in the Grid cells where the text does not fit the specified width and display the full content in a tooltip when the user hovers over the cell?"
Thanks