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
The mobile tabstrip is not scrollable and the stacking that takes place when the viewpoort is too narrow to contain all the tabs is unsightly and grabs precious screen real estate
Kendo grid angular is having option to rebind which works fine perfectly but the aggreates on the column footer are not updated when the k-options for the grid are changed. the sum is displayed as undefined next time when the value for the grid option is changed .
Let's say I'm using an autocomplete to choose a country: I know I can format the list with a template, but at the moment I can't have the inner value of the widget to be the ISO code and the input text value to be the description + ISO country code. For example, the user types "ita" in the input box, the list shows an element with "[flag] Italy". When the user clicks on that row, the input box changes to "Italy - IT", and the Autocomplete istance would return "IT".