Hy,
In my application I had to insert the localization with the default Italian language.
I followed the points explained in this link step by step: Blazor Localization - Telerik UI for Blazor
Inside my application I therefore have a Resources folder with the following files inside:
TelerikMessages.resx and TelerikMessages.it-IT.resx (set as default on Program.cs).
My problem is the following: in debug the localization for the DateTimePicker or NumericTextBox components works correctly showing me the date and number formats in Italian with the related translated texts.
However, once I insert my application into a docker container, the localization seems to have no effect, showing both components in English language and format.
My Resources Folder:
However, localization for the Grid component works correctly in both cases.
Attached is the behavior of the date picker in debug mode and inside a docker container.
Can anyone give me a solution without using the Format property of the components but using localization? My application is in Dotnet 8
Thanks.
When I use the ColumnSpan property on a floating label, the label itself will grow to the number of columns, but the content of the label will always get the size of the column the floating label is int.
Below is the code I've used:
@page "/gridLayout"
<TelerikGridLayout>
<GridLayoutColumns>
<GridLayoutColumn Width="200"/>
<GridLayoutColumn Width="200"/>
<GridLayoutColumn Width="200"/>
<GridLayoutColumn Width="200"/>
</GridLayoutColumns>
<GridLayoutItems>
<GridLayoutItem Column="1"
Row="1"
ColumnSpan="3">
<TelerikTextBox Title="Filial" />
</GridLayoutItem>
<GridLayoutItem Column="1"
Row="2"
ColumnSpan="3">
<TelerikFloatingLabel Text="Pessoa">
<TelerikTextBox />
</TelerikFloatingLabel>
</GridLayoutItem>
</GridLayoutItems>
</TelerikGridLayout>
This is how it's rendered:
Hello Guys, i got the License for Blazor Application,
I'm using Server Side at .net 6 and i put the css and js on _Layout :
<link rel="stylesheet" href="_content/Telerik.UI.for.Blazor/css/kendo-theme-default/all.css" />
<script src="_content/Telerik.UI.for.Blazor/js/telerik-blazor.js" defer></script>
On nuget i got the full version as well,
But i keep receiveng the trial version message when i use PDF Viewer, am i missing anything else?
Hi everyone
When using a translated ListView, the page size selector behaves weird.
When the dropdown is opened, the correct text ("Alle") gets displayed. But when the dropdown is closed, the english text is shown,
Any ideas?
Thanks alot and have a nice day
I'm having trouble finding the cause of why the display has changed and the paging control is cutting off the value. I can't see the difference from the Telerik doc examples.
or ...
The width of the browser window or resolution doesn't have any effect.
We are using the "_content/Telerik.UI.for.Blazor/css/kendo-theme-bootstrap/all.css".
On the map component when zoomed in there are labels for points of interest (businesses/airports/hotels/restaurants/etc..)
Is it possible to capture these when a user clicks on an item? I know I can capture the lat/long of a click but can I get the details of the point of interest?
Hy,
I have an EditForm for inserting a Model Dto.
The Dto Model has two dates. The start date which is of type DateOnly and the end date which is of type DateOnly nullable.
Although the end date is null, the date picker sets the value "01/01/2001" by default and I can't find a way to enter a null value using this component because if I try I get the error: "The date format is not parsable. Please enter valid date".
This is my code:
Can anyone tell me if this is a feature that has yet to be implemented or if I'm doing something wrong?
I attach photos of the edit form.
Thank you
Hi, i use Grid.AutoFitAllColumnsAsync() to resize column width based on column content.
Now, this method resize also non resizable columns (Resizable="false")
I would like to apply autofit only on resizable columns, how to solve?
I would use AutoFitColumnsAsync() method but i need a generic way to apply it excluding non resizable columns.
There is a way to read from code the Resizable property of columns?