Is there a way to use the stepper in a view only mode? I am using it to show the current status in a larger process, so the user shouldn't be able to click to change the value.
Thanks in advance
I am using a FileSelect to allow users to upload attachments with a request. Once the file is uploaded and it appears in he file list, there doesn't seem to be a way to allow the user to open in from an OnClick event or anything.
Is there a way to either:
1. Capture and on click even when they click a file in the FileSelectFileList
or
2. Hide the FileSelectFileList all together so that I can replace it with my own list and implement the functionality myself?
Thanks in advance
Hi
<WizardStepLabel="Registration of employee"
can i have a label over more lines?
Like
Registration
of employee
Eric
Hi,
I have a recurrent event with the following dates:
"Start": "2022-08-01T07:00:00",
"End": "2022-08-01T08:00:00",
"RecurrenceRule": "FREQ=DAILY;UNTIL=2022-08-04T05:00:00"
https://datatracker.ietf.org/doc/html/rfc5545#section-3.3.10 says:
The UNTIL rule part defines a DATE or DATE-TIME value that bounds the recurrence rule in an inclusive manner. If the value specified by UNTIL is synchronized with the specified recurrence, this DATE or DATE-TIME becomes the last instance of the recurrence. The value of the UNTIL rule part MUST have the same value type as the "DTSTART" property
I generated the events with Thunderbird, synchronized to the caldav-Server and read it from there.
In the Telerik Scheduler I got only 3 occurences of the event: from the 1st to the 3rd.
In Thunderbird I got 4. From the 1st to the 4th. According with the RFC, Thunderbird is right :-)
Why there are only 3 events in the Telerik Scheduler? And who get I the correct events (without "hack" around)?
I'm trying to use the TelerikUpload control in a Blazor server project. I created a Blazor server project from the Telerik template.
I'm trying to use only minimum web API for the upload endpoints. I haven't added controllers or routing to the configuration.
The issue is that I'm getting a 400 error when I use the MapPost(). I've tried many different variations for the post action parameters.
app.MapPost("upload/save", async (IFormFile files) =>
{
if (files != null)
{
var physicalPath = Path.Combine("D:\\Source\\repos\\BlazorVPMS\\BlazorVPMS", "Upload/", files.FileName);
logger.Debug(physicalPath);
using (var fileStream = new FileStream(physicalPath, FileMode.Create))
{
await files.CopyToAsync(fileStream);
}
}
});
The only post method that works is this, after I added a form tag to the html.
app.MapPost("upload/save", async (IConfiguration config, HttpRequest request) =>
{
var files = request.Form.Files.First();
if (files != null)
{
//string path = config["StoredFilesPath"];
var physicalPath = Path.Combine("D:\\Source\\repos\\BlazorVPMS\\BlazorVPMS", "Upload/", files.FileName);
logger.Debug(physicalPath);
using (var fileStream = new FileStream(physicalPath, FileMode.Create))
{
await files.CopyToAsync(fileStream);
}
}
});
We don't want users to be able to select some rows, so we want to disable the checkbox on GridCheckboxColumn. I do realize this is a bit more complicated since it deals with row selection. We are using it to add selected items to a shopping cart. Some items are not for sale, so they cannot be added in bulk this way. So in this use case, we don't want them selecting the row. Any suggestions?
We are open to other ways to handle this, but we wanted to avoid having the user click on something and then have it say "No you cannot do that."
Hi:
Is the approached discussed in the kb article Autofit all Grid columns on initial load still valid given that the Blazor controls are on version 3.4.0 and .NET 5+ supports JavaScript Isolation?
Thanks
-marc
I am new to Telerik (and CSS in generally) and unfortunately I am struggeling even with simple things.
I just want to set the Font-Size of a FloatingLabel like this:
.floatinglabel { width: 100%; color: red; font-size: 8px; }
Is it possible to set the content of Window/Dialog to be a variable containing HTML code?