Hello, I'm looking at the Stepper component e.g. (from a Telerik code sample and can't seem to find choices for icons.
I have looked at the documentation which points to web fonts but they don't seem right as I pasted in one or two of the icon names and get a blank step.
Thanks for any insight where to find a list of icon names to use in the Stepper.@(Html.Kendo().Stepper()
.Name("stepper")
.Orientation(StepperOrientationType.Horizontal)
.Label(Model.Label)
.Indicator(Model.Indicator)
.Steps(s =>
{
s.Add().Label("Begin").Icon("home");
s.Add().Label("Second").Icon("attachment").Error(true);
s.Add().Label("Third").Selected(true);
s.Add().Label("Fourth").Icon("user");
s.Add().Label("111");
s.Add().Label("Done").Icon("save");
})
)
Hi, I've got 2 dropdownlist dd1 and dd2. I need this functionality:
Is this possible with the cascade functionality of the telerik dropdownlist?
Best regards.
I started a new project, and realized I no longer have the Kendo scaffolding options to select when adding "New Scaffolded Item". I even open previous Kendo projects and did not see the options too. I repaired the Telerik install and even tried reinstalling it.
I confirmed the Kendo UI Scaffolder is present under Extensions.
Framework is .NET 4.7.2 on Visual Studio 2019 Version 16.10.3
I'm not sure what else to do. Please help. thanks!
Hi
I am using Kendo grid in asp.net mvc application, I have added Editable (incell) column in the grid, when I click on the editable column the column width is increasing. How to fix edit box width to column width.
column size before clicking on edit column
column size after clicking on edit column
I have tried to implement a line chart along with Notes,. but the problem arises when 2 notes are very close to each other they overlap and are not readable. I tried adding margin but could not achieve a good result even with rotation it looks very absurd.
I am trying to figure out a way where I can display the notes in one series alternatively top or down. But I can't find anything. I only got an option to display notes top or down per series. Need help with this?
Or if any other way I can achieve it with a readable format
Good morning,
I have an issue with TreeList component (in MVC) when I add the Selectable checkbox column (as first column) : in this configuration the drag & drop doesn't work correctly.
When I try to drag a row in another position the "after" behavior would never be applied. Only the "before" and "over" behaviors seems to work correctly. All the "after" are intended always as "before".
If I simply remove the Selectable checkbox column from the configuration, all start to works fine.
Could you kindly check or give me some tips on how to solve it?
Thanks and regards,
Hey,
So i have a grid and within the databound model i return an [Active] variable, based on if this variable is true or false i would like to hide a column within the grid based on this [Active] value.
I have read that if columns need to be hidden / shown dynamically that i should use .Hidden() instead of .Visible() because the .Hidden() will still render the column but just set its display to [None] whereas the .Visible() does not render the column at all.
Based on a value selected from a dropdown a new request is made to the server and the grid is rebound with data,the grid should hide / show the appropriate columns
Html.Kendo().Grid<JobsViewModel>()
.Name(
"Grid"
)
.Columns(columns =>
{
columns.Bound(o => o.Status).Title(
"Status"
);
columns.Bound(o => o.Reason).Title(
"Reason"
).Hidden(o=>o.Active); <-- How to hide based on [Active]
i need the [Reason] column hidden based on the [Active] variable
.Hidden(o=>o.Active) is not valid, this would be the perfect scenario for me.