I've tried to find documentation on how to modify the CSS for the dropdownlist and it's popup but can't seem to figure out how to change the "Search" area size, nor the "Select Type" (they are too large).
I was able to figure out how to adjust the actual items:
.custom-compact-dropdownlist-popup .k-list-item {
padding-top: 2px;
padding-bottom: 2px;
font-size: 0.90em;
}
and reference:
<DropDownListSettings>
<DropDownListPopupSettings Class="custom-compact-dropdownlist-popup" />but I don't know what to use in CSS ... is there a list somewhere of the ".k" class selectors?
Rob.

Is it possible to change the headings in the column chooser menu?
This is supported in other Telerik products by using the Messages property which is absent in Blazor
I'm looking at ThemeBuilder Ultimate for use in my Blazor-Server UI project. I went thru the 3 year old intro video but it's very out dated and seems to focus on Kendo UI. There is no mention on how to get a ThemeBuilder project into an existing Blazor UI project?
Also, I assume ThemeBuilder Pro/Ultimate are separate subscriptions from my existing Blazor UI Complete subscription? Your pricing material seems a bit confusing:
Why list Theme Builder ultimate under DevCraft Complete if it's not actually included in the DevCraft Complete subscription?
Theme builder looks to be a nice powerful and easy to use UI tool so I'd like more information before I make funding requests.
Rob.

In my _Host.cshtml:
<link href="_content/Telerik.UI.for.Blazor/css/kendo-theme-material/all.css?@telerikUiForBlazorVersion" rel="stylesheet" />In my page code:
<TelerikGrid TItem="@BookingModel"
@ref="@BookingGridRef"
Height="225px"
Resizable="false"
FilterMode="Telerik.Blazor.GridFilterMode.FilterMenu"
SelectionMode="GridSelectionMode.Single"
SelectedItems="@SelectedBookings"
OnRowClick="@OnBookingRowClick"
OnRowDoubleClick="@OnBookingRowDoubleClick"
OnRead="@OnBookingGridRead"
Sortable="true"
Reorderable="true"
Pageable="true"
@bind-Page="@CurrentBookingGridPage"
EnableLoaderContainer="false"
Size="@ThemeConstants.Grid.Size.Small"
PageSize="25">Setting the Size has no impact on the UI (Small, or Medium, or Large) renders the same.
In addition, setting RowHeight to a value has no impact on the UI:
<TelerikGrid TItem="@BookingModel"
@ref="@BookingGridRef"
Height="225px"
Resizable="false"
FilterMode="Telerik.Blazor.GridFilterMode.FilterMenu"
SelectionMode="GridSelectionMode.Single"
SelectedItems="@SelectedBookings"
OnRowClick="@OnBookingRowClick"
OnRowDoubleClick="@OnBookingRowDoubleClick"
OnRead="@OnBookingGridRead"
Sortable="true"
Reorderable="true"
Pageable="true"
@bind-Page="@CurrentBookingGridPage"
EnableLoaderContainer="false"
RowHeight="(decimal)12.5"
PageSize="25">It doesn't seem to matter what Theme I use in the _Host.cshtml file, RowHeight and Size are completely ignored?
Ultimately what I would like is to augment and Telerik theme with just a few changes, but I can't see any way to achieve this without going down the entire custom theme route, which I really don't have time for.
Rob.

Hi,
Is it possible to get event when user click/double click task on Gantt chart (grid/timeline). We should update some properties based on selected task.
Is it possible to create new dialog for popup editing?

Hello,
Would it be possible to provide a clear set of steps—or ideally, a sample solution—demonstrating how to integrate Telerik Blazor with ASP.NET Identity using the .NET 9.0 framework? This seems like a fairly common requirement, but I haven’t been able to find any concise documentation that outlines the process.
I’ve created my project using the Blazor Web App template with Individual Accounts, and I’d like to confirm whether those settings are correct, and specifically, what additional steps are required to complete the integration such as changes to the Identity layout or pages (eg, Login.razor).
Thanks,
Kevin

The DockManagerContentPane provides a HeaderTemplate for interface components that appear above the Content. Is it possible to add a footer component below the Content block.
I have scrollable content in the Content block and need to insert a paging control beneath the Content block that does not scroll with the text.
Thanks

I was wondering if it is possible to place labels above toolbar drop-down menus?
I've tried various options without success.
