Hello,
Is there a way to remove the border around each datapoint?
If I have a column chart, and I set the color of the colorfield to rgba(45, 177, 185, 1) the border around the column is black, is there a way to remove the border?.
I have attached an image of the "issue".
Best Regards,
Emil
Hi,
during the previous update, the style of the indeterminate checkbox changed from a square to a thin line. In practice, this is very hard to distinguish from the empty checkbox. Is there a way to revert this to the old style?
Kind regards!
Hi, I have a list of around 200 items. When you double click on a item you are taken to another page with a list of sub items.
This is a read only app, no updates and I need it to be as fast a possible. Fetching data is fast around 30ms.
I would like the main list (Telerik Grid) to keep it state including selected row, sorting and everything.
This should work with the browsers back button and the blazor navigation manager.
I was thinking of cashing the data, but it's the redraw that's taking time.
Should this has been a server app?
Hello,
I'm looking into the question which version of the Telerik UI stack would best fit my requirements and am wondering how much feature parity exists between the Blazor UI controls and Kendo UI for Angular.
List of controls? It seems the "standard controls" are available, but I didn't do a deep dive / side by side comparison. I'm just looking for general guidance here.
Availability of the testing framework abstraction layer showcased in this blog article: https://www.telerik.com/blogs/automated-testing-of-kendo-ui-made-easy
Hi,
This might be a bit of a strange question and it is hard for me to explain why I'm trying to achieve this, so please don't ask why, but here's a short summary of what I'm trying to achieve:
- I've created my own GridColumn class which inherits from the Telerik GridColumn class.
- In this class, I want to somehow be able to manually edit the column's cell content through C# code. I found some info on how to manually manipulate components and elements here: https://docs.microsoft.com/en-us/aspnet/core/blazor/advanced-scenarios?view=aspnetcore-6.0
- The thing is, I'm not sure how to use the RenderTreeBuilder to access the column cell and edit its contents, for example with a custom template or a simple string.
- I'm well aware I can simply provide a template to the GridColumn in Razor, but I'm trying to find a programmatic approach where I can do it in C# code.
public class GridColumn : Telerik.Blazor.Components.GridColumn
{
protected override void BuildRenderTree(RenderTreeBuilder builder)
{
base.BuildRenderTree(builder);
//logic goes here
}
}
Hi, after I've upgraded my project to 2.27, my controls are not aligned anymore. I've found out the issue is at the all.css file, where it defines the height of the input controls, as shown in the files.
Is there anything I can to do fix it?
Hi, I am trying to hide the hours column from the scheduler day view(please see screenshot)
from what I can see, there is no property on the control to achieve this behavior.
I would also like to stack the items on top of each other instead of horizontally..
Is there a way to achieve this?
Thanks!
Hi,
Usually you can easily get the context by doing the following:
<GridColumn Field="PostalCode">
<Template>
@{
var item = context as Hostel;
//stuff happens
}
</Template>
</GridColumn>
I have overridden the Telerik GridColumn with my own GridColumn, and I want to be able to pass the context as a parameter to my own GridColumn, like this:
<GridColumn Item="@context" Field="PostalCode"></GridColumn>
Is this possible?
Is it possible for users to add their own HTML/ARIA attributes to Telerik components as needed?
There are some elements in Telerik components that are failing Success Criterion 4.1.2, "ARIA attribute cannot be used, add a role attribute or use a different element: aria-label", because they have the aria-label attribute but they don't have the required aria-role attribute to go along with it.
One example is in the grid component: https://demos.telerik.com/blazor-ui/grid/keyboard-navigation. Demo the component using "EDIT IN TELERIK REPL" and run an axe or Accessibility Insights test on the page to see these errors on a couple of elements. One of the elements that has this error is the next/previous button for pagination:
<a data-index="10" aria-label="Go to the next page" title="Go to the next page" class="k-link k-pager-nav " tabindex="-1"><!--!-->
<span class="k-icon k-i-arrow-60-right" role="presentation"></span><!--!-->
</a>
In this case, we would need to add the appropriate aria-role attribute to the <a> tag.
What is the best way to add these attributes? Also, are you planning on fixing this accessibility issue across all your components?
Will there be a possibility to get the .scss or .json files with the color palette of the old themes like Vintage, Metro, Urban, Moonlight, Office 365, Powder Blue, Uniform and others?
Since they are not available in the new Sass Builder, my idea is to rearm them. It would be great not to have to do it from scratch.
I guess you must have that info available somewhere.
Regards.