Hello,
I was wondering if/when you will offer a larger selection of themes for your Blazor components?
Other vendors, e.g. DevExpress, have large theme selections, as seen here https://demos.devexpress.com/blazor/GridColumnTypes
Right now, you only have three, which are very similar to one another. Users commonly want to have a dark theme, for example, and you don't offer any.
Please advise.
Thank you.I have a wizard where I have defined OnChange events for the steps and I am also creating my own custom buttons.
the event fires when a step is clicked on in the progress bar, but they do not fire when clicking on the buttons in the WizardButtons.
I have created my next and previous button just like in your example for custom buttons.
if (index > 0)
{
<TelerikButton ButtonType="ButtonType.Button" OnClick="@(() => step -= 1)">Previous</TelerikButton>
}
if (index < lastStep)
{
<TelerikButton ButtonType="ButtonType.Button" OnClick="@(() => step += 1)" Primary="true">Next</TelerikButton>
}
Hi,
I have a Treelist filled with items + plus another textbox control. The contents of these controls are just different views of the same list of fields. As I move my mouse over the treelist, I'd like a mousemove event to fire so I can highlight the equivalent item in my textbox.
How do I get a mouseover event to call my underlying C# code with the current mouse over row?
Note, I currently have a column template with mousemove event in it. That works, but requires very specific mouse locations. I'd like it to be a full row trigger (just like your current mouseover highlighting). I'd really prefer not to use a row template either as I want all the cool functionality you provide without it (expand/collapse, edit etc). Is this possible?
I'm from a wpf background and love the idea of making web-based apps that can provide rich experiences to my users. I'm really hoping that Blazor grant me this opportunity.
Cheers
Hello!
Consider the code bellow. I have an @ondblclick event on a card that sets a boolean value which in turns controls the visible property of a Telerik RTE inside a foreach loop.
The problem is when I double click on card, all the RTEs become visible. How can I control the dblclick event to set the Visible property of the RTE inside the card I dblclick? Any hint will do.
I dont know if I am making any sense, but I can provide additional details if needed.
@foreach (var chapters in leaseContractDefaultTemplateChapters.OrderBy(s => s.DisplayOrder))
{
<MudContainer Fixed="true">
<MudPaper Height="auto" Width="auto">
<MudCard @ondblclick="@OnChapterCardDoubleClick">
<MudCardHeader>
<CardHeaderContent>
<MudText Class="d-flex" Typo="Typo.h6">@chapters.Name</MudText>
</CardHeaderContent>
<CardHeaderActions>
<MudIconButton OnClick="@(async () => await GetComputedTemplateChapter())" Icon="@Icons.Material.Outlined.Functions" />
<MudIconButton OnClick="@OnSaveChapterClick" Icon="@Icons.Material.Filled.Save" Color="Color.Success" />
</CardHeaderActions>
</MudCardHeader>
<MudCardContent>
@if (rteVisible)
{
<TelerikEditor @ref="chapterEditor" @bind-Value="@chapters.HtmlString"
Tools="@Tools"
Height="300px">
</TelerikEditor>
}
else
{
@((MarkupString)chapters.HtmlString)
}
</MudCardContent>
</MudCard>
</MudPaper>
</MudContainer>
}
Hi,
I updated Telerik Blazor to version 2.25.0
The js file is served from _content folder
<script src="_content/Telerik.UI.for.Blazor/js/telerik-blazor.js" defer></script>
When I click any button from application I get the error
telerik-blazor.js:49 Uncaught TypeError: Cannot read property 'getAttribute' of undefined at e.value (telerik-blazor.js:49) at e.i.close (telerik-blazor.js:49) at HTMLDocument.i.onMouseDown (telerik-blazor.js:49)
I had no problems with the old version (2.24.0)
Any idea?
Thanks,
Ion
Hi all,
We want an easy to set up (and easy to code) form in Blazor, with default CSS styling, and with real two-way data binding.
And this is where we are already struggling.
In our case, we cannot get one checkbox to trigger the visibility of another.
To better understand the issue, we provide a simple and small sample (attached). It has a very simple TelerikForm and a very simple EditForm.
<TelerikForm Model="@_data">
<FormItems>
<FormItem LabelText="Condition 1:" Field="@nameof(_data.Value1)"></FormItem>
@if (_data.Value1)
{
<FormItem LabelText="Result 1:" Field="@nameof(_data.Value2)"></FormItem>
}
</FormItems>
</TelerikForm>
<br />
<br />
<EditForm Model="@_data">
<label>Condition 2:</label>
<InputCheckbox @bind-Value="@_data.Value1" />
<br />
@if (_data.Value1)
{
<label>Result 2</label>
<InputCheckbox DisplayName="Result 2:" @bind-Value="@_data.Value2"></InputCheckbox>
}
</EditForm>
@code {
private ExampleDto _data { get; set; } = new ExampleDto();
}
To repro the behavior:
If you click 'Condition 2' (inside the EditForm), then it triggers any bound item, also in the TelerikForm.
However, if you click 'Condition 1' in the TelerikForm, nothing will change and nothing gets triggered.
Is there an easy and obvious solution?
Thanks!
Hello,
I have a grid with nested columns. The column's "child header" Title is displayed in the label of its corresponding editor in the popup. However, in my case, the child header titles are not unique without the "parent" header Titles. Can I prepend the "parent header" Title in the labels in the popup?
A screenshot is attached. Note the red and green label pairs are identical in the popup, so the user can't distinguish what the data attributes are.
Thanks again!
Hello,
I'm having a weird behaviour using your Tooltip component.
<TelerikTooltip TargetSelector="#clickTarget" ShowOn="@TooltipShowEvent.Click">
<Template>
Tooltip content
</Template>
</TelerikTooltip>
<span id="clickTarget">
<strong>Click</strong> me to see the tooltip.
</span>
<span id="clickTarget">
<strong>Click</strong> me to see the tooltip.
</span>
Just two spans and a tooltip which is shown when any of these spans is clicked.
The weird behaviour is that these spans are showing a "default title tooltip" on hovering, showing null in its content, after I have clicked them to show the telerik tooltip I've defined. They still are showing the telerik tooltip on click, but also a "default title tooltip" on hovering, showing null.
Please take a look at the attached gif. As you can see, after, and just after, I have clicked the spans, a new null tooltip is appearing on hover. It is like your component was setting the span title to "null" or something like that.
Any way of removing this behaviour?
Thanks!