The second level of Context Menu never pops up, always down, even if there is no space to do so.
It seems like the first level will pop up if there isn't enough room below the menu to show the items. However, the second level always appears below the menu that was expanded.
Demo here:
https://demos.telerik.com/blazor-ui/contextmenu/overview
Make your window not very tall, so the "clickable" part (that says "Right-click to open Context menu" is barely visible at the bottom of the screen").
Then right-click; and hover over "Style". The sub menu appears below the word "Style", and is cut off by the bottom of the window. It should know that there is no space down there, and pop "up".
What can I do to fix this?
Thanks!

Hello,
I'd like to apply custom width on the dropdown element for the filter row in grid component. The last column in our project is wide enough for the cell content but not wide enough for the filter row dropdown. I was wondering if it'd be possible to target a `.k-animation-container` element that is connected to the dropdown. Here's a demo that shows the issue.
Result I'd like to get:
Kind regards,
Greg

For example, when the user clicks on a button inside (or outside) the Window, I maximize or minimize the Window. Something like window.Maximize();
The specific use case here is when the user loads data, I want to automatically maximize the Window for them. It is difficult for the user to find the maximize button because the window width becomes greater than the browser window and they have to drag the window to find the maximize button and click it.
Hi,
When I entering the password, the password is stored in chrome browser.
So I need to remove the manage password and I have attached the image below
Please see below code
<EditForm Model="@resetPasswordModel" OnValidSubmit="@SaveChanges" autocomplete="off">
<FluentValidator TValidator="ResetPasswordValidator" />
<p>@Model.Name</p>
<EFormRowGroup LabelText="New Password" Id="Password">
<TelerikTextBox Id="Password" @bind-Value="@resetPasswordModel.Password" Password="true" AutoComplete="off"/>
</EFormRowGroup>
<EFormRowGroup LabelText="Confirm Password" Id="ConfirmPassword">
<TelerikTextBox Id="ConfirmPassword" @bind-Value="@resetPasswordModel.ConfirmPassword" Password="true" AutoComplete="off"/>
</EFormRowGroup>
<EValidationSummary />
<EDialogActions>
<TelerikButton Icon="save" Primary="true" ButtonType="@ButtonType.Submit">Save</TelerikButton>
<TelerikButton Icon="cancel" ButtonType="@ButtonType.Button" OnClick="@CancelClick">Cancel</TelerikButton>
</EDialogActions>
</EditForm>
Could you please advise on this.
Thanks,
Vishnu Vardhanan.
Is there a way to have the treeview scroll vertically?
Thanks ... Ed
Please see REPL: https://blazorrepl.telerik.com/wcYncXGa24oOJuTr39 or attached sample file.
await Editor.ExecuteAsync(new HtmlCommandArgs("insertHTML", "Hello", true));Executing the above code by clicking the Insert button in the REPL throws this exception:
Unhandled exception rendering component: _V[e] is not a function
TypeError: _V[e] is not a function
...
Any workarounds?
Thanks!

<TelerikGridLayout>
<GridLayoutColumns>
<GridLayoutColumn Width="100%"></GridLayoutColumn>
</GridLayoutColumns>
<GridLayoutRows>
<GridLayoutRow Height="10vh"></GridLayoutRow>
<GridLayoutRow Height="90vh"></GridLayoutRow>
</GridLayoutRows>
<GridLayoutItems>
<GridLayoutItem Column="1" Row="1" Class="m-auto">
<img src="Images/logo.png" />
</GridLayoutItem>
<GridLayoutItem Column="1" Row="2">
<TelerikTabStrip TabPosition="Telerik.Blazor.TabPosition.Top" @ref="BaseDashboardTabStrip" ActiveTabIndex="@currentTab" ActiveTabIndexChanged="@TabChangedHandler">
<TabStripTab Title="Tab 1">
</TabStripTab>
<TabStripTab Title="Tab 2">
</TabStripTab>
<TabStripTab Title="Tab 3">
</TabStripTab>
<TabStripTab Title="Tab 4">
</TabStripTab>
<TabStripTab Title="Tab 5">
</TabStripTab>
<TabStripTab Title="Tab 6">
</TabStripTab>
</TelerikTabStrip>
</GridLayoutItem>
</GridLayoutItems>
</TelerikGridLayout>
@code {
TelerikTabStrip BaseDashboardTabStrip;
int currentTab { get; set; } = 0;
void TabChangedHandler(int newIndex)
{
currentTab = newIndex;
StateHasChanged();
}
}I am attempting to utilize TelerikNumericTextBox, rather than TelerikTextBox, in order to take advantage of the Min, Max, Format, and other features available. However, upon making the switch I am no longer able to display a blank/null value in the textbox.
I don't see any mention of this in the TelerikNumericTextBox docs (https://docs.telerik.com/blazor-ui/components/numerictextbox/overview) and I assume this behavior is by design. Is there a way to allow a TelerikNumericTextBox to have a blank/null value? Perhaps a TelerikMaskedTextBox would work?
Hello,
I have a parent component that holds a pop up window. When the window pops up (is visible) then the parent component becomes disabled (no user interaction with the parent - underlying component - is possible).
Within this window, I have another Dialog window that will pop up upon closing the window, if a certain condition is not met.
When this Dialog pops up, the underlying component (which in this case is the pop up window) doesn't become disabled. Instead, the effect will take place again on the parent component.
How would I make the 'disable' effect take place on the window located in the parent component, and not on the parent component, upon the popping up of the Dialog?
Thank you.
I'm getting the following error after upgrading from 2.x to 3.x of the Blazor library.
Unhandled exception rendering component: Object of type 'Telerik.Blazor.Components.TelerikMultiSelect`
does not have a property matching the name 'ChildContent'.
This happens when this control attempts to load.
<FormItem Field="@nameof(NoteVM.AssignedToUser)">
<Template>
<TelerikMultiSelect Data="Users"
AutoClose="false"
Placeholder="Select Assign To Users"
Width="100%"
Filterable="true"
TextField="@nameof(UserInfoVM.UserName)"
ValueField="@nameof(UserInfoVM.UserName)"
@bind-Value="@AssignedToUsers">
<MultiSelectPopupSettings>
<DropDownListPopupSettings Height="200px" />
</MultiSelectPopupSettings>
</TelerikMultiSelect>
</Template>
</FormItem>
