Hello Team;
Is there plan to offer "Card" component where we can create a card with different parts and properties, i.e. Title, Sub-Title, Text, Image, Action buttons and etc.
Something like this:
https://vuetifyjs.com/en/components/cards/#grids
If my memory serves me right, I thought I had seen as part of 2021 R1 roadmap.
Thanks!
Hello team;
Can you please tell us in what version or approximate time of arrival of the new Toolbar?
Suggestion: It would be helpful if the roadmap list is sorted by "In progress" status. This way we can plan accordingly.
Thanks!
You can add a search box in the grid toolbar that lets the user type their query and the grid will look up all visible string columns with a case-insensitive Contains
operator, and filter them accordingly. You can change the filter delay, and the fields the grid will use - see the Customize the SearchBox section below.
-----
I have an int and a string field and would love to be able to let the user search in both at the same time.
Workaround is now:
public int number {get; set;}
public string numberString => number.ToString();
public string name {get; set;}
But I would love to see it without the need to use the numberString
I would really be happy to see your WPF Diagram Control (https://www.telerik.com/products/wpf/diagrams.aspx) ported to Blazor.
Do you have any plans to do so?
Now we can expand/collapsed tree view item using bound read/write model property.
We need to bind read-only property or controll expandability outside of tree view.
Examples:
Thank you
I'd like to request a native Blazor Image Component that allows to provide different parameters to control the image.
This could also help to connect it to the upload component, for user to see the image while still in browser and make some changes, i.e resizing, cropping, Black/White, before sending it to server to be stored.
Thanks!
..Ben
Hi,
Firstly, love what you're doing with your Blazor components. I'd like to be able to add custom style to your components. For example
<TelerikTextBox Style="margin-left: 20px" />
Now of course we should be using a class for this and I know your components have a Class parameter, however what I'd like to do is something like this
<TelerikTextBox Style="@CssHelper.Margin.Top(20)" />
where the style is generated at runtime. I'm experimenting with such an approach to apply all styles, however I can't do so with a lot of your controls. Having said that, I've noticed that your animation container does have something along these lines with its ParentInlineStyle parameter.
<TelerikAnimationContainer @ref="@AnimationContainer"
Top="-72px" Left="calc(100% - 280px)" Width="300px"
AnimationType="AnimationType.SlideDown"
Class="k-popup"
ParentInlineStyle="@Style">
So just wondering if this is something you're looking at doing?
thanks
Michael.
Would be nice to have an Expansion Panel like this one:
https://material-ui.com/components/expansion-panels/