Hello
I wanted the events size to be 100% of the cell.The event should occupy the whole cell . As in my application we will have only one event for a day.Is it possible.
http://dojo.telerik.com/oguzU/2
Dear all,
I use PanelBar through angular integration. I link my kendo bar with my controller thanks to k-data-source.
<ul id="kendoPanelBar" kendo-panel-bar k-data-source="vm.accordion" k-options="vm.accordion.options">
I use contentURL to load each panelBar. All work fine !
My problem is the cache option which is disable for ajax request : Loading of different contentURL is performed with the addition of a timestamp for the request :
e.g. : selectRecherche?_=XXXXXXXXX
I would like a classic loading of the content without that timestamp addition (for use of $templateCache). How can I disable that ! I didn't find nothing in k-options! (transport ?)
Thanks a lot
Right now it seems that when drag & drop is turned on ( http://demos.telerik.com/kendo-ui/treelist/index ), and I move a row, I can only change its parent. What if I want to change the order of items ONLY?

Hi,
I am using multi row drag & drop Grid Feature. I have 2 grids, first contains master detail grid (#grid1) and second grid (#grid2) contains list of items. I am able to select multiple rows from grid2 and drop to grid1 as master successfully. My requirement is to add selected rows from grid2 to grid1 as child to one of the row. Once data is dropped to grid 2, how to refresh the detail grid?
Thanks,
Sanjay
hi ,
I am using Kendo datasource transport read method in the read i am calling POST API but the API is getting called multiple times and also when the complete callback is called the API is infinitely called can you please give me the solution for this
Here is my transport function
var transportFunction = function(pageurl, reqObject) { return { read: { url: pageurl, contentType: "application/json; charset=utf-8", type: "POST", dataType: "json", beforeSend: function(xhr) { xhr.setRequestHeader('Authorization', token); } }, parameterMap: function(options) { reqObject.PageSize = options.pageSize; reqObject.PageNum = options.page; var request = JSON.stringify(reqObject); return request; } }}and we are calling as below:
vm.gridOptions.dataSource.transport=transportFunction(apiUrl, reqObj);vm.gridOptions.dataSource.schema.data="docDetailsArray"vm.gridOptions.dataSource.schema.total="totalCount"
response from server:
{demoDetails:[],ErrorMsg:[], Success: true,docDetailsArray:[ {list_of_keys_with_value1}, {list_of_keys_with_value2}, ..... ..... ]};
Anyone face the same issue. can any body help me out why multiple xhr reqest are going
Thanks
I have a Kendo grid that is pulling 100,000s of records.
If the .ServerOperation(false) Kendo does not load any data.
If I set it to .ServerOperation(true) it will load the data however the search filters do not work.
What am I missing?
Is there a way to use .ServerOperation(false) with 100,000ss of records?
<div class="grid"> @(Html.Kendo().Grid<BusinessApplication.DTO.DTOMemberGrid>().Name("grid") .Columns(col => { col.Bound(m => m.MemberID).ClientTemplate("<a href='/members/view/#=MemberID#' class='block'>#=MemberID#</a>").Width(100).Title("ID"); col.Bound(m => m.PersonsTitle).Width(100).Title("Title"); col.Bound(m => m.FirstName); col.Bound(m => m.LastName); col.Bound(m => m.JobTitle); col.Command(command => command.Custom("View") .Click("EditItem")) .Width(100) .Title("View") .HtmlAttributes(new { @class = "k-grid-details text-center", title = "View" }) .HeaderHtmlAttributes(new { title = "View" }); }) // Source & configuration .DataSource(src => src .Ajax() .PageSize(10) .ServerOperation(true) .Sort(sort => sort.Add("MemberID").Descending()) .Read(read => read.Action("GetMembersGridItems", "Members"))) .AutoBind(true) .Sortable() .Resizable(resize => resize.Columns(true)) .ColumnMenu() .Scrollable(s => s.Height("auto")) .Pageable(pageable => pageable .Refresh(true) .PageSizes(new[] { 10, 50, 100, 500 }) .ButtonCount(10)) .Filterable(filter => filter .Operators(op => op.ForDate(date => date .Clear() .IsGreaterThanOrEqualTo("Is after or equal to") .IsLessThanOrEqualTo("Is before or equal to")))) .Reorderable(reorder => reorder.Columns(true)) ) </div>
Thanks
Tom
Hi,
I'm making use of the expandPath function of the treeview, but is doesn't always call the complete function the first time, as if it doesn't do this if it takes to long or something. It works perfectly if I call the function twice but that shouldn't be the solution.
treeView.expandPath(arrPath); treeView.expandPath(arrPath, function() { var getitem = treeView.dataSource.get(path); var selectitem = treeView.findByUid(getitem.uid); treeView.select(selectitem); treeView.trigger('select', { node: selectitem }); });
Hi,
I'm working on drag and drop the node item with in the same node. It is working as expected. But it allows to drag and drop the child item from one node to another. It should be prevented.
Appreciate your support to fix the issue.
Thanks in advance.