I bought this program for this calendar at the bottom
http://www.telerik.com/kendo-ui/calendar
It's so beautiful I have to have it! But I'm stuck here
If my product is installed, how do I open it? How do I use it? Help?
I'm really very technologically savvy but quite befuddled with this one.

Hello,
I am having a little problem. I am using the kendo grid widget and i use local array as my datasource. I am using batch editing. Whenever UnitPrice is modified, local array is updated and datasource read function is called to refresh the grid. The problem is the last row seems to have the dirty flag. I dont see any problem with what i am doing. Could you tell me why the last row has dirty flag?
I have created an example snippet in the following location. I've also attached the file. http://dojo.telerik.com/@bat-erdene/EBego/2
The Kendo Grid Column MinScreenWidth setting works really well for grids taking up the full screen width (i.e. columns can be dynamically hidden/displayed as the screen width is shrunk/expanded)
However, I'm running a Kendo Grid inside a Kendo Splitter, and I'd like the grid to exhibit the same kind of functionality when the splitter width is varied.
Does anyone know of a way to achieve this?
Regards,
Chris
When a TabStrip is used with bootstrap theme the widget switches to the first tab for a short period when selecting a tab in IE11.
To reproduce the issue try the basic example in http://demos.telerik.com/kendo-ui/tabstrip/index and select bootstrap theme.
I am trying to create a page that asks generally when someone would be available during a work week independent of the actual day of year. I would like to modify the work week schedule view to only have Mon, Tue, Wed, Thu, Fri in the header vs/ Mon M(onth)/D(ay), Tue M/D, ...
How do I remove the M/D value and only keep the Day of Week abbreviation?
Thanks,
John
Hi,
Is there an example of using the Grid with angular and signalR ? There is a example for Grid w/ angular and Grid w/ signalR but not both. Thanks.
SJ
Hello
I'm using a TreeView that is working fine but I always got an error message when using the findByText function. It took my a good time to find out what the problem is: I am using a template on initializing the TreeView. If I disable/remove the template on initializing the TreeView the findByText function works great. If the template is active I got an error message on using findByText function:
[Error] TypeError: undefined is not an object (evaluating 'o.loaded') kendo.all.min.js :38:19209
var objectView = $("#treeview").data("kendoTreeView");
objectView.append({ text: "append1" }, $("#treeview .k-item:last")); // --> Works with and without template
var foo = objectView.findByText("Game");
objectView.append({ text: "append2" }, test); // --> Works only without template
DataSource used in TreeView:
var treeEmpty = [
{text: "Game",id: -1, type: "game", expanded: true, spriteCssClass: "fa fa-globe fa-fw", items: [
//{ text: "Mein Game", id: -2, type: "spot"},
{ text: "Spots", id: -2, type: "spot", spriteCssClass: "fa fa-map-marker fa-fw"},
{ text: "Characters", id: -3, type: "character", spriteCssClass: "fa fa-user fa-fw"},
{ text: "Items", id: -4, type: "item", spriteCssClass: "fa fa-key fa-fw"}
]
}
];
Template used in TreeView:
<script id="treeview-template" type="text/kendo-ui-template">
#: item.text #
# item.id #
# if (item.id < 0) { #
<a class="fa fa-plus-circle fa-fw handpointer"> </a>
# } #
</script>
I must assume that the usage of a template in a TreeView changes the default structure so certain functions do not work anymore. How else can I append entries/items to TreeView when using a template?