Hi,
I have a grid with StartTime column, the source object for the grid has a property DateTime
I can handle this using Template and format the output of the DateTime, showing time only
<GridColumn Field=@nameof(DtoRead.Shift.EndTime) Title="@LanguageContainer.Keys["MasterDataEndTime"]" Editable="false" Width="@ColumnSize.S"> <Template> @((context as DtoRead.Shift).EndTime?.ToString(@"hh\:mm", System.Globalization.CultureInfo.CurrentCulture)) </Template></GridColumn>
when Grid is loaded with data, I have filter on top of this column and it shows DatePicker control
I want to show a Time Picker instead... how to do this?
I want to see time only and filter time only values
Thanks,
Artem
I have a simple combobox where the value is not populated on load:
<TelerikComboBox Value="@SelectedValue"
Data="@SourceColumns"
AllowCustom="true"
Width="100%" />
@SelecteValue is a string
@SourceColumns is an ObservableCollection<String>
If I switch it to a drop down list, the item is selected, however I need to be able to have custom values.
This seems pretty straight forward, and I am thinking I am missing something minor?
I have a scrollable page that includes logic to show a Telerik window control. I have the window height set by default to 600px and I have included the default maximize action. The content of the Window may or may not be scrollable as well.
When I maximize the window control it fills the entire scrollable area rather than just the current visible area.
Any thoughts on what I might be doing wrong or if this is how the control is supposed to work?
Thanks,
Greg
Hi,
Is it possible to specify different editor templates for different levels in hierarchical data?
What I am trying to do is to build a hierarchical structure for grouping items. The list of items is specified so, in the grouping hierarchy, I want to select an item as the child element of the lowest grouping level rather than typing the name of the item and resolving if it exists. I thus want for the lowest level, to have a combobox rather than an editbox. The data items presented in the treelist have a property to bind to.
Thanks for any suggestions.
Renier Pretorius
Hi,
Is there a tooltip option to add for the expend plus button on the left of a telerik grid row. Several of my clients have wondered if I could do this? Is there a function already in the Telerik Blazor Grid component? If not, are there any examples of someone attempting this on github? My clients have employees which they believe this option/concept would be very helpful.