I have a scenario I did not see how to fix. I have a menu aligned top right with sub menus. It expands down and then to the right. The sub menu items on the screen edge stay on the screen but cover the menu items underneath. Is there a way to expand to the left?
Im using a code-behind approach as in this article
https://www.telerik.com/blogs/using-a-code-behind-approach-to-blazor-components
When using the upload component, we need to specify a SaveUrl
https://docs.telerik.com/blazor-ui/components/upload/overview
Is that the only way?
Can we have a web api that and a blazor server app in the same project, with the api handlers handling routes also?
Any plans to implement a checkboxlist component?
Like in the aspnet-ajax library? Would come in handy with several projects im working on
https://docs.telerik.com/devtools/aspnet-ajax/controls/checkboxlist/overview
Hi,
How do I make all/some Check Boxes selected on Grid Load?
Is there "Value" or "Selected" property of that component?
Something like:
<GridColumns>
<GridCheckboxColumn Selected="true"/>
</GridColumns>
Please advise
I installed UI for Blazor into an existing Blazor Server project. I have confirmed that the Telerik control for Blazor are functioning with my pages. However, when using the controls on a Razor page I am not getting any Intellisense suggestions. If I do CTRL + Space Intellisense displays "No Suggestions". Have I missed a setup step or something?
Thanks.
Hi,
I'm using "nav-link" to go to page:
@page "/orders"
I'm also using Parameter which tells me what type of order to be loaded with that Page:
@page "/orders/{ord}"
There is "nav-item" dropdown on NavMenu.razor page to navigate to Page:
<a class="dropdown-item" href="orders/SO">SO</a>
<a class="dropdown-item" href="orders/PO">PO</a>
The issue is, when I click on any of those links first time (say href="orders/SO") - the Page loads correctly.
But then, when I click on href="orders/PO" - the page isn't rendering accordingly even though Parameter on Url has changed.
This happens after I replaced JS Table I used before with Telerik Grid.
Please advise
I have 2 horizontal charts that are set to 100% width, when resizing the browser the charts are not resize to be 100% of the new browser size so they are left out of the window.
Is there any way to do this? could you add this feature to your charts so they can autoajust to any resolution when resizing the browser?
Hi,
This is my DatePicker:
<TelerikDatePicker Min="@Min" Max="@Max" @bind-Value="@thePickerValue" Id="select-date" OnChange="@MyOnChangeHandler"></TelerikDatePicker>
@code {
public string newAppDat { get; set; }
public DateTime Max = DateTime.Now.AddDays(180);
public DateTime Min = DateTime.Now.AddDays(-60);
private DateTime? thePickerValue { get; set; }
private void MyOnChangeHandler(object theUserInput)
{
newAppDat = (theUserInput as DateTime?).Value.ToString("yyyymmdd");
}
}
I set a break point inside Handler but execution is not pausing on it when I pick new date in DatePicker.
Please advise.