Hello.
When using the editor at the present time, the problem arises in that you cannot insert a picture from a local computer, but you need to download it somewhere, and then insert the url's image.
Will the system be improved to upload pictures from the local computer or use drag and drop?
(copy/paste no work perfectly u can't upload image with big size)
-/-/-/-/-/-/-/-/-/-/-/-/-/-/-/-/-/-/-/-/-/-/-/-/-/-/-/-/-/-/-/-/-/-/-/-/-/-/-/-/-/-/-/-/-/-/-/-/-/-/-/-/-/-/-/-/-/-/-/-/-/-/-/-/
При использовании редактора в настоящее время, возникает проблема в том что нельзя вставить картинку с локального компьютера, а необходимо загрузить куда то, а потом вставить урл.
Будет ли доработана система, что можно будет загружать картинки с локального компьютера и использовать драг/дроп?
Hello.
I wanted to know how I can modify the WizardStepper template? Basically I want to customize the WizardStepper in a similar way to when it is customized in the Stepper component (https://docs.telerik.com/blazor-ui/components/stepper/step-template).
Since the WizardStepper is actually a Stepper, I suppose this is possible. The point is that I have not managed to do it. I'd tried WizardStepperSettings but only two properties can be configured from here (StepType and Linear).
Thanks.
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!