Is there a plan to include Spellchecker in Blazor Editor? We have some spelling-challenged users that have specifically requested this functionality. Or will we need to add it as a Custom Tool?
I have an EditForm with a couple fields followed by a TabStrip. Each TabStripTab has multiple fields. The Tabstrip is followed by a final couple of fields and the usual Submit/Cancel buttons.
How do I control the sequence of fields if I tab through the form? First couple of fields, fine. TabStripTab it jumps over and goes right to the final fields and buttons. Keyboard tabbing will not enter the TabStrip.
How do we get this to work properly?
Hello everyboy!
I use a Splitter with two panes. In every pane is a grid. The second pane ist about 35% high. If I click on the Column-Menu, a popup appears - usually it drops down... but then I can not use the filter anymore, because it is to less space to show the filter, the buttons and so on.. at the moment I enlarge the popup in height (css) and the popup always pops up in the right direction. But this ist just a workaround and looks pretty ugly :-) - Has anyone an idea?
Have a look at the attachment...
Thanks!
I receive from other developer workable application with Blazor and Telerik UI. I have installed Telerik UI successfully to my machine, then install package Telerik.UI.for.Blazor.Trial. Site successfully compiled and started. But Blazor UI don't working.
Can i use Panelbar ContentTemplate as a dynamic template in a view?
Example: i want different ContentTemplate to render depending on a property.value?
code is from Telerik's own example with my addition
<TelerikPanelBar Data="@FlatData" @bind-ExpandedItems="@ExpandedItems">
<PanelBarBindings>
<PanelBarBinding>
@{ var _c = context as object
@if(_c.GetType() = Type)
{
<ContentTemplate>
<div class="panelbar-template">
<h2 class="k-text-primary">Custom Template:</h2>
@(((PanelBarItem)context).Text)
</div>
</ContentTemplate>
}
else
{
<ContentTemplate>
<div class="panelbar-template">
<h2 class="k-text-primary">Custom Template 2:</h2>
@(((PanelBarItem)context).Text)
</div>
</ContentTemplate>
}
}
<HeaderTemplate>
<strong>@(((PanelBarItem)context).Text.ToUpper())</strong>
</HeaderTemplate>
</PanelBarBinding>
</PanelBarBindings>
</TelerikPanelBar>
I have a problem when I tried to add a control on the TreeListCommandButton
the context is not resolved
Telerik version: 2.17.0
Hi Team,
Is that possible to add column name for draggable row in Telerik grid.
Please find the attached screen shot for your reference.
Thank you.
Lakshmipathi K
I have a Telerik Blazor Grid where I am doing a custom OnRead event to get the data.
I am trying to detect within that event handler when the grid filters have changed as I need to request extra data if someone changes the grid filters in anyway.
I have tried comparing the previous filters with the new request filters but it says they are always different even when just requesting a new page in the grid.
My code looks like this:
protected override async Task OnReadHandler(GridReadEventArgs e)
{
if (!ReHydrateGridFromPersistedState)
{
//no grid state exists so call the database for data
var filtersHaveChanged = GridRequest != null && !GridRequest.Filters.Equals(e.Request.Filters);
GridRequest = e.Request;
if (filtersHaveChanged)
{
ExtraData = await GetExtraDataAsync();
}
await base.OnReadHandler(e);
}
else
{
GridRequest = e.Request;
}
}
var filtersHaveChanged = GridRequest != null && !GridRequest.Filters.Equals(e.Request.Filters);
/* filtersHaveChanged is ALWAYS true */