Hello,
Request/suggestion to enhance the scheduling functionality. For production environments, especially with long running processes the current setup is not sufficient.
See excel for an example of how this could work. Extension of current timeline to include a year. Would be best if multiple timelines could be defined creating more or less detail depending on choices.
The other axis to relate to the resource/asset where the work will take place.
Currently the scheduler works best for short-running activities. Displaying longer running activities is a challenge.
<div id="grid"></div>
<script>
// The dataSource is initialized as a stand-alone widget that can be bound to the Grid.
var dataSource = new kendo.data.DataSource({
transport: {
read: {
// The remote endpoint from which the data is retrieved.
url: "https://demos.telerik.com/kendo-ui/service/products",
dataType: "jsonp"
}
},
pageSize: 10
});
$("#grid").kendoGrid({
// The dataSource configuration is set to an existing DataSource instance.
dataSource: dataSource,
pageable: true
});
</script>
The breakpoint is added at the last line (326079) of the file.
The breakpoint is added at the desired line (e.g., 3715).
The jQuery dependency is defined as follows in the package .nuspec file:
<dependency id="jQuery" version="(, 3.7.1]" />
This causes the following warning to appear when installing the package in a project:
Telerik.UI.for.AspNet.Mvc5 2024.3.1015 does not provide an inclusive lower bound for dependency jQuery (<= 3.7.1). jQuery 1.4.1 was resolved instead.
The affected packages are:
Telerik.UI.for.AspNet.Mvc5
Telerik.UI.for.AspNet.Mvc5.Trial
Install the Telerik.UI.for.AspNet.Mvc5 package in a project and check the warnings list.
Warning:
Telerik.UI.for.AspNet.Mvc5 2024.3.1015 does not provide an inclusive lower bound for dependency jQuery (<= 3.7.1). jQuery 1.4.1 was resolved instead.
Add a lower bound (https://learn.microsoft.com/en-us/nuget/reference/errors-and-warnings/nu1604) to resolve the warning about the jQuery dependency.
Hello, double click on tabStrip tab in loadContentFrom mode open loadContentFrom parameter in new page. this is a bug.
Add ASP.NET MVC Wrappers to Nugget to import kendoui easily into new projects.
For example if you use grid in Client mode it's use case sensitive sorting without any post-back to server which is real cool. But in situation when you need to export grid data to(csv, pdf...) you can pass sorting options from grid to server, collect all data from DB and create exported document. BUT for example SQL server use case insensitive default sorting, so exported documen will not have same data order like grid.
Why you not create a radio button list and a checkbox list with model binding
html select has a groupoption tag, and also the possibility to add classes or styles to indivual rows in a combobox. With it, you can combine the items in a combobox in groups/categories. Styling could ofcourse be done by using custom-templates
It would be nice to be able to set options other than the window's title and set events on the window that is exposed by the grid editing options.
It doesn't seem possible to set the width or height of gauges through the MVC server wrappers. This is useful functionality that should be easy to implement.
I believe the intent of the component Kendo is very good, but this in a very early stage. For example, resource error in Portuguese language
It will be helpful if we have insert table, add/delete rows or columns button on the toolbar. I have seen Radeditor toolbar for Asp.net Ajax by Telerik. It will be great if more useful buttons are added on the toolbar.
Most of the time DefaultValue isn't known. Allow us to enter null or don't require it.
Currently for the Window and Tooltip controls (possibly others, but those are the ones that I'm working with), the Height and Width properties are both integer properties which set the height and width in pixels. I would like the ability to be able to enter Height and Width in 'em' units, much like can be done with the grid column widths.
What's way to Apply DisplayTemplate(Annotation) for my Model with Ajax binding (Read)
Kendo UI Menu currently supports only mouse over on child/sub menu items. Root items are configurable to open only if moust is clicked. But actually child items also should have the same type of configuration. In my organisation people simply clicking everytime on menu items, they dont wait for the mouse to open its child items. And when the child menu items opened they press mouse button by mistake and the menu gets closed that gets them irritating.
When user click on Edit/Add call custom url. To this url automate pass the ID(or viewModel for ASP.NET MVC) of current record (null if it's new record). This url have to return partial view for edit(or add) form (like template).