I have an odd behavior with the splitter. I'd like to know how to get this to work. For some reason the Label is aligned to the left off the page. How do I get around this behavior?
Splitter Definition:
@(Html.Kendo().Splitter() .Name("splitter") .HtmlAttributes(new { style = "height: 150px;" }) .Panes(panes => { panes.Add() .HtmlAttributes(new { id = "top_pane" }) .Collapsible(true) .Content(@<p>@Html.Partial("_SplitterWorkPanel1")</p>); panes.Add() .HtmlAttributes(new { id = "bottom_pane" }) .Collapsible(true) .Content(@<p>@Html.Partial("_SplitterWorkPanel2")</p>); }))
Partial Views (both are the same):
@{ Layout = null; }<div class="row"> <label class="col-form-label">Date Range</label></div><div class="row" style="margin-top: 5px;"> <label class="col-form-label">Status</label></div>

The code places the PDF Viewer in a partial razor view. I am using Zurb Foundation to display a modal dialog. The PDF viewer displays on the modal dialog. I am using the OnRender to change the PDF viewer to fit to width. What I am seeing is the first time that the PDF file is rendered, the PDF file is smaller than subsequent renders while the modal dialog is open.
For example, on the first render of the dialog, I see the following( see attachment FirstRender.png).
While the modal dialog is displayed, I change to another zoom selection and back to fit to width. This render does appear to fit to width (see attachment SecondRender.png). Repeating the switch between the selections and back to fit to width yields the same result where fit to width seems to work (see attachment SecondRender.png).
Is there some way I can get the first render to fit to width like the subsequent renders?

Hi,
I'm stuck on a fall back version due to budget constraints. We use 2020.1.406.
Does this version not support Form?
Thank you.

How do I add data attributes?
Like:
data-filter=".lap"
Thanks, Marty
FYI, I am having issues posting in the forum as well in chrome

Hello,
I'm using this code in my grid:
.ToolBar(tools => tools.Excel())
.Excel(excel => excel
.FileName("Ci_view.xlsx")
.Filterable(true)
.ProxyURL(Url.Action("ExportExcelSave", "Ci"))
.AllPages(true)
My question is; how can I exclude some columns from my Excel?
Thanks!!
I was using Hoverable Dropdown (https://www.w3schools.com/howto/howto_css_dropdown.asp) and when Filterable Kendo Grid is applied on my webpage, the Kendo Grid Filter icons appeared on top of the Hoverable Dropdown interface while the Kendo Grid headers were hidden by the Hoverable Dropdown (please refer to the partial screenshot from the attachment).
Is it because of certain part of the css for the Hoverable Dropdown causing such an issue?
I would appreciate your expert advice.
Cheers

I started using the TreeList and this happens:
Is it possible to save the current order so that when you go back to the list it remembers the changes you made?

I want to bring up the print dialog as soon as the PDF is loaded.
I am using
pdfViewer.execute({ command: "PrintCommand" });which works fine from a button.
However it fails when I use it from the onRender event.
Putting an alert in the event appears to show the event is fired before the PDF is rendered to screen.
Is there another way to do this?
Hello, I am trying to reorder/sort items in my TreeList but it doesn't seem to work like this demo:
https://demos.telerik.com/aspnet-core/treelist/dragdrop
Every time I drag an items it looks like i can only add it to a parent but I can't drop it in a new position (see attached video).
So I have two questions:
Here's the code:
01.@(Html.Kendo().TreeList<SchoolInfoSectionViewModel>()02. .Name("treelistschool")03. .Columns(x =>04. {05. x.Add().Field(e => e.SectionId).Title(" ")06. .Template($"<div class=\"d-inline-flex\" role=\"group\">" +07. $"<a href=\"../SchoolInfo/Edit/#= SectionId #\" class=\"btn btn-sm btn-secondary mr-1\">" +08. $"<i class=\"fa fa-pencil\"></i></a>" +09. $"<span class=\"text-muted mr-1\">|</span>" +10. $"<a href=\"\\#\" data-val=\"#= SectionId #\" class=\"btn btn-sm btn-danger mr-1\" data-toggle=\"modal\" data-target=\"\\#deleteModal\">" +11. $"<i class=\"fa fa-trash\"></i></a></div>")12. .Width(120)13. .Filterable(false);14. 15. x.Add().Field(e => e.SchoolInfoContent.ContentTitle).Title("Section Title")16. .Template($"<a href=\"../SchoolInfo/Detail/#= SectionId #\" >#= SchoolInfoContent.ContentTitle #</a>");17. 18. })19. .Editable(editable => editable.Move(true))20. .Reorderable(true)21. //.Filterable()22. //.Sortable(true)23. //.Toolbar(toolbar => toolbar.Search())24. //.Toolbar(t => t.Custom().Name("btncreateschool").Text("+ Create new section"))25. //.Search(x => x.Field(f => f.SchoolInfoContent.ContentTitle))26. .DataSource(x =>27. x.Read(read => read.Action("AllSchool", "SchoolInfo"))28. .Model(m =>29. {30. m.Id(f => f.SectionId);31. m.ParentId(f => f.ReportsTo).Nullable(true);32. m.Expanded(false);33. m.Field(f => f.UpdatedBy);34. m.Field(f => f.SchoolInfoContent.ContentTitle);35. m.Field(f => f.UpdatedOn);36. m.Field(f => f.IsPublished);37. })38. ))