On this page: http://demos.kendoui.com/web/grid/column-menu.html See the "Shipxxx" column. IE can input contents and submit but the menu seems shake. Other modern browsers can NOT input contents but the menu Not shake. Please fix both! Thanks~
Add TickDistance, AutoRange and Step to the line Chart like the Telerik RadChart. When querying a web service and charting a dynamic/variable number of values, the current chart results in grid lines too close together and overlapping x-axis values. This would space the grid lines and labels based on the number of values and available space. This is from the RadChart documentation: The TickDistance has to be used together with AutoRange. When AutoRange is set to True, the axis Step value is calculated depending on the data range, the available space and the TicksDistance value. Since TickDistance defines the minimal distance between two ticks, increasing its value will cause the Step value to be increased too.
Add optional scrolling to Chart like Telerik RadChart Scrolling: http://www.telerik.com/help/silverlight/radchart-features-zooming-and-scrolling.html And/Or add a paging feature to the Line Chart that allows the user to page from right to left through data. Use the paging feature of the datasource to allow huge datasets to be viewed in increments (querying pages of data for the chart as the user pages from right to left) for performance. For example, if a years worth of hourly data is requested, page by month through the chart and query the data from the datasource one month at a time. This could work nicely with a grid configured for paging using the same datasource to display the data and chart in sync on the page.
AngularJS, which just released 1.0, is gaining a lot of fans (including myself and my developer-friends). There already is an AngularJS adapter for jQueryMobile, and I hope the KendoUI Team will work on an AngularJS adapter for KendoUI very very soon. I think a solid AngularJS adapter implementation will pull my team over to KendoUI for good.
I created a custom theme using the theme builder. I then created a grid (using the MVC wrappers) and included a column menu. When I drop down the column menu there are no sprites drawn for sort, filter etc - there are in the provided Telerik themes. These images should also be included with custom themes.
I've been trying to use these great UI widgets in PHP update forms and the lack of documentation on how to use the datasource and widgets together in PHP forms is incredibly frustrating. Seems like it would be a very small job for one of the kendo gurus to come up with the following and add it to the examples and/or documentation: Update forms: In update forms you need to initialize the widget(dropdowns, comboboxes, etc...) with the value of the column in the database and provide the list of options to choose from to edit the data. I assume there is a way to do this using the datasource but there is zero documentation on this. Please provide a simple example with a standard php update form with the widgets pulling the form data from a simple query based on a selected id, just like every standard php form on the web, with clear code showing us how to configure the widgets so that they contain the data from the db when initialized and providing the list of options via the widgets dedicated datasource. This is very simple stuff and should take one of your junior techs 10 minutes and would make some of us very happy. Thanks!
See http://www.highcharts.com/demo/line-basic for a good example of Client-side Chart Export
When the destroy operation fails for some reason (exception or ModelState error) the item on the client will be removed. Don't remove the item from the grid if operation fails in the backend.
and a grids toolbar with the commands and template at the same time throw a search input text that filters the grid.
Won't hurt to have one, to have a KendoUI version would be pretty in the eyes.
Addition of the Rich Editor similar to what is found in ASP MVC controls in Telerik
It would be a very cool thing to have a small WYSIWYG-Editor for mobile devices. As far as I know, there isn't kind of this on the market at all. So Kendo UI Mobile could be at pioneer-state
Hi, some of date and time patterns defined for cs and cs-CZ cultures are wrong. The correct patterns are: d: "d. M. yyyy", g: "d. M. yyyy H:mm", G: "d. M. yyyy H:mm:ss" (dots are followed by spaces)
Web devs have a million different frameworks out there. Talk about how this differs (or is a companion) from using jQuery UI (looks like it competes), Knockout, extJS, etc...
Sure the IE Mobile browser is not fantastic (even the Mango version feels like it has issues), but will you be supporting the WP platform? That would round out all the worth while mobile devices in my opinion.
http://css-tricks.com/responsive-data-tables/
When Adding a schedule item,a popup is opening but when opening popup i want to restrict popup based on css class name of clicked scheduled item
how to get css class name of clicked scheduled item
Sourcecode:
@(Html.Kendo().Scheduler<FMCO.DataTransferObjects.Configuration.AppointmentModel>()
.Name("scheduler")
.Date(new DateTime(DateTime.Now.Year, DateTime.Now.Month, DateTime.Now.Day))
.StartTime(new DateTime(DateTime.Now.Year, DateTime.Now.Month, DateTime.Now.Day, 08, 00, 00))
.EndTime(new DateTime(DateTime.Now.Year, DateTime.Now.Month, DateTime.Now.Day, 17, 00, 00))
.Editable(editable => editable.TemplateName("CustomEditorTemplate"))
.EventTemplate("")
.Events(e => e.Add("onAdd"))
)
<script>
function onAdd(e) {
// i want here css class name of click item
}
</script>
Please help me
Thanks in advance
Currently when a new row is added to the grid, it will be inserted according to its initial values and the grid's sort order, but this means it may or may not be visible on the page the user is looking at. In this case the user gets no indication that a new row has been added and will have to page through the grid to find the new row.
We have defined a work start and end time for the scheduler. However if the user shows full day in the scheduler we want to make sure the scheduler is scrolled to the start time (when the scheduler is either init or when the user clicks on the show all day button). So basically if there is an API exposed to make the scheduler scroll to a given time then this will work. Please also refer to ticket#: 845019
It would be very helpful it there is an option to hide spin controls on numeric controls. Spin control are not really useful in all cases. Also setting readonly property for the control has no effect on the spin control you can still update the value by clicking the spinner. Currently in the forum a workaround was suggested using css (http://jsfiddle.net/krustev/uZUjK/). Implement this as a property for the numeric control