Hello,
I want to use your TelerikEditor in my existing project. Our project primarily uses DevExpress along with a few other components like Blazored Modal.
First I want to know if there are any known issues mixing Devexpress and Telerik in the same project? My main concern is having CSS clashes between the two libraries.
2nd, we use Blazored Modal which has a cascading parameter (CascadingBlazoredModal) that wraps the router. When I try to show the TelerikEditor in a modal I get the following:
"A Telerik component on the requested view requires a TelerikRootComponent to be added to the root of the MainLayout component of the app. Read more at: https://docs.telerik.com/blazor-ui/getting-started/what-you-need#project-configuration"
I suspect this is because dialog is parented outside of the MainLayout which uses the TelerikLayout. Is it technically feasible to use the TelerikLayout inside a view?
Thanks,
Matt B.
I have a form that I would like to use the Window component on to gather additional information before submitting the parent form.
Is there a way to trigger submit of the parent form and the associated Validations from the Window component? Or is there a different component that should be used?
I'm trying out Telerik for Blazor. Got the latest BlazingCoffee code from Github and a trial license but when I build I get the following error.
File to import not found or unreadable: ./node_modules/@progress/kendo-theme-default/dist/all.scss
I am stumped on what to do to resolve this.
Thanks.
I understand from here: https://docs.telerik.com/blazor-ui/components/grid/templates/editor
That the Editor Template gets a copy of the original model.
However not all the values are getting copied correctly for my model object.
I'm using a SmartEnum property, https://github.com/ardalis/SmartEnum, and that property is not getting copied correctly, basically, it's empty.
I'm wondering how this "copy" is being made, cloned?, so I can update either the model of my SmartEnum instance.
Thanks,
Ed
Is it possible via the DataSourceRequest to generate the string to bring back sub objects and even sub sub objects?
It does not seem to fit in the FilterDescriptor.
Hello,
I'm working currently on a document viewer module and I would like to know if there's a PDF viewer available.
Something like this https://blazor.syncfusion.com/demos/pdf-viewer/default-functionalities?theme=fabric
in advance thanks,
Andrian
I have a DatePicker bound to a non-nullable DateTime property.
If the user presses delete on a part of the date, that part is reset, and the error shown is "The date format is not parsable. Please enter valid date" rather than the validation message defined in the validator class.
It's then impossible to get rid of this message other than by typing in a valid date. Selecting with the actual picker does not work.
I have made a video to demonstrate: https://youtu.be/twCXE4jTTJs
<TelerikDatePicker Id="dpStartDate" @bind-Value="CurrentlyEditedItem.StartDate" Width="100%" Format="dd/MM/yyyy"></TelerikDatePicker>
public Validator()
{
RuleFor(x => x.SiteId).NotEmpty().WithMessage("Please select a site");
RuleFor(x => x.StartDate).NotEmpty().WithMessage("Please supply a start date");
}
Can you provide an example of how to set column visibility using media breakpoints? For example, I want to be able to display more columns when the user is using an application from a desktop browser and just the essential columns when it's viewed on a phone.
Hello,
I am using Telerik Blazor components in an ASP.net Core MVC app as we are slowly migrating the application to Blazor. My component is inserted into a Razor view using the <component> tag helper.
Inside the component I have the <TelerikRootComponent> surrounding the contents, etc. The component works without any issues. I needed to add a confirmation dialog to use with grid's delete command. Unfortunately, the DialogFactory cascading parameter is always null and thus confirmation dialog cannot be shown. Please advise.