I am trying to create my first grid using Kendo UI. I am using the 'Basic usage' code snippet from your demo but unfortunately 'Customer Photo' and 'Page navigational buttons (First, Previous, Next and Last)' are not visible in Grid. Could you please help me?
I have created a new page in my Office 365 SharePoint site and inserted a 'Script Editor' web part. I have attached the snippet I used in the web part and also the resulting grid.
Hi,
I'm trying to load a grid with spaces in the datasource field name but there seems to be an error.
I saw that you guys fixed it 3 years ago here but it seems to have been reintroduced.
I couldn't figure out how to link from the Kendo UI Dojo so I copy pasta'd the code here:
Hi Team,
I would like to know how to do a popup edit for multiple rows by click of next or prev link in the same popup. So that end user able to edit multiple rows without closing the popup.
Thanks,
Jose
Hi,
I have a problem with opacity in Tabs on Mircosoft Edge. I use kendo UI in version (2017.3.1026), but it doesn't seem to work even on the latest version kendo.
When I changing the tab there is some kind of animation with opacity. But I don't know how I can disabled it.
On chrome everything works fine.
https://demos.telerik.com/aspnet-mvc/tabstrip
Can you help me fix it?
Best regards.
Hi
In the release notes of Kendo UI R1 2018 there is stated that the DataSource widget has a new functionality:
"NEW
DataSource component should be able to dynamically change and update the widget"
What does that mean? What is now possible, that hasn't been possible before?
Could you give a short information or (at best) a short code example that works with the current release but not with the release before?
Thanks in advance
Hey gang - trying to figure out why my read method is getting called twice when a user hits the Search button specified in the template. It's calling this:
.Read(read => read.Action("GetOrders", "SalesOrder").Data("toolbarValue"))
2 times every time the Search is clicked. Any ideas?
Here's the full layout:
@(Html.Kendo().Grid<SalesOrderSearchResultsViewModel>()
.Name("Grid")
.Columns(columns =>
{
columns.Bound(o => o.WarehouseOrderNumber).Title("SO Number").Width(150);
columns.Command(command => command.Custom("Tracking").Click("getTracking")).Width(100).Title("Tracking");
columns.Command(command => command.Custom("Serials").Click("getSerials")).Width(100).Title("Serials");
columns.Bound(o => o.PONumber).Width(150);
columns.Bound(o => o.EndUserPO).Width(150);
columns.Bound(o => o.Status).Filterable(f => f.Extra(false).UI("statusFilter").Operators(o=>o.ForString(s=>s.Clear().Contains("Contains")))).Width(100);
columns.Bound(o => o.DocTypeDesc).Width(150);
columns.Bound(o => o.ShippingAddress.Name).Title("ShipTo Name").Width(150);
columns.Bound(o => o.ShippingAddress.City).Width(150);
columns.Bound(o => o.ShippingAddress.PostalCode).Width(130);
columns.Bound(o => o.Total).Format("{0:c}").Width(100);
columns.Bound(o => o.DateEntered).Title("Entered").Format("{0:MM/dd/yyyy}").Width(110);
columns.Bound(o => o.LastChanged).Title("Changed").Format("{0:MM/dd/yyyy}").Width(110);
columns.Command(command => command.Custom("Details").Click("getDetails")).Width(100);
})
.ToolBar(toolbar => toolbar.ClientTemplate("<text><div class='toolbar'><a role='button' class='k-button k-button-icontext k-grid-excel' href='test'><span class='k-icon k-i-file-excel'></span>Export to Excel</a><span class='core-lbl'>Search: </span><input type='text' name='search' class='k-textbox' id='toolBarInput'/><span class='core-lbl'>Type: </span><input id='searchType' style='width:200px' /><span class='core-lbl'>Start Date: </span> <input id='dpStartDate' title='Start Date' style='width: 130px' /> <span class='core-lbl'>End Date: </span><input id='dpEndDate' title='End Date' style='width: 130px;' /> <button class='k-button' onclick='search()'>Search</button></div></text>"))
.Sortable()
.Pageable(p => p.ButtonCount(5).PageSizes(new int[] { 20, 50, 100, 1000, 2000 }).Refresh(true))
.Filterable()
.Resizable(r => r.Columns(true))
.ClientDetailTemplateId("template")
.Scrollable(scr => scr.Height(800))
.DataSource(dataSource => dataSource
.Ajax()
.PageSize(20)
.Read(read => read.Action("GetOrders", "SalesOrder").Data("toolbarValue"))
.Sort(sort => sort.Add("LastChanged").Descending())
.Events(e => e.Error("onError")))
.Excel(excel => excel
.FileName("soexport.xlsx")
//.ProxyURL(Url.Action("ExcelExport", "SalesOrder"))
.AllPages(false))
.Events(events => events
.DataBound("onDataBound"))
)
Thanks!
Craig
I have an issue using ListView, DataSource and Angular where transport is fully custom, e.g. transport update/create/read and delete are functions.
I used original plunkr from https://demos.telerik.com/kendo-ui/listview/angular and added edit template, edit/cancel and update buttons.
transport.read method works as expected and returns original "product" array from the example however upon edit of the ProductName, transport.update is never executed and no error is thrown. I've added schema/model with id and other columns however it has no impact.
Please help
https://dojo.telerik.com/@sergpro/etuvac/6
Hi!
During our tests with the spreadsheet we noticed that when we import from excel and use a file that contains underlined cells, this specific formating is lost.
However no other formating seems to be lost and exporting kendo's spreadsheet with underlined cells work. This use case can be reproduced here https://dojo.telerik.com/IcoRol with the attached file.
Is this a known bug?
Thanks!