Hi community,
I encountered the issue shown in the screenshot while loading data from the database. The loading image indicator is shown, but it isn't fitting correctly.
The them used is Fiori and my kendo version is 2017.1.118
Any advice how to fix this issue?
Many thanks and kind regards,
Thomas
Hi,
I updated my project to use the latest Telerik MVC release 2016.3.1028, but after this update the grids that i had DisplayDeleteConfirmation(false) does not work anymore and when i click on cancel it displays the message box with "are you sure". When i downgraded to a old version it worked fine.
Now since i have installed the current version the previous version 2016.3.914 that i was using is no more displayed in the update tool in Visual Studio for me to downgrade, please let me know how can i downgrade to this specific version.
Thanks in advance
Arvind
Hi;
It's possible to set a Shared DataSource lto a Fluent API Scheduler, like to a Grid, via DataSource Name?
Example:
DataSource:
@(Html.Kendo().DataSource<Models.Event>() .Name("SharedEvents") .SignalR(sr => sr .Transport(tr => tr .Promise("hubStart") .Hub("OpsToolHub") .Client(c => c .Read("read") .Create("create") .Update("update") .Destroy("destroy")) .Server(s => s .Read("read") .Create("create") .Update("update") .Destroy("destroy"))) .Schema(schema => schema .Model(model => { model.Id(m => m.id); model.Field(m => m.fID).Editable(false); model.Field("start", typeof (DateTime)).From("Start"); model.Field("end", typeof (DateTime)).From("End"); model.Field("title", typeof (string)).From("Title"); model.Field("description", typeof (string)).From("Description").Editable(true); model.Field("recurrenceRule", typeof (string)).From("RecurrenceRule"); model.Field("recurrenceException", typeof (string)).From("RecurrenceException"); model.Field("isAllDay", typeof (bool)).From("IsAllDay").Editable(true); model.Field("startTimezone", typeof (string)).From("StartTimezone").Editable(true); model.Field("endTimezone", typeof (string)).From("EndTimezone").Editable(true); }) ) ))
Scheduler:
01.@(Html.Kendo().Scheduler<Models.Event>()02. .Name("schedulerWeek")03. .Date(DateTime.Now)04. .StartTime(new DateTime(2017, 1, 1, 1, 00, 00))05. .Height(1000)06. .AllDaySlot(false)07. .Timezone("Etc/UTC")08. .MajorTick(1440) 09. .MinorTickCount(1) 10. .CurrentTimeMarker(marker =>11. {12. marker.UpdateInterval(600000); //updates each 10min.13. marker.UseLocalTimezone(false);14. })15. .Views(views =>16. { 17. views.CustomView("kendo.ui.SchedulerTimelineWeekView", t =>18. { t.Title("schedulerWeek"); 19. }); 20. })21. .Resources(resource =>22. {23. resource.Add(m => m.type)24. (...) //shorttened25. .Group(group => group.Resources("RegisterName", "type").Orientation(SchedulerGroupOrientation.Vertical))26. .EventTemplateId("event-template")27. .DataSource(????) '???? how to set the shared datasource, imposible via name as far as we try!!!
Waiting for response;
Best Regards;

@(Html.Kendo().Grid<intranet.mvc5b.Models.Arrangement.Lokaler>()
.Name("gridLokaler")
.Columns(col =>
{
col.Bound(p => p.ID).Hidden(true);
col.Bound(p => p.Lokale);
col.Bound(p => p.Aktiv).Width(60).ClientTemplate("#=Aktiv? 'Ja' : 'Nej' #");
col.Command(command => { command.Edit()
.Text("Ret")
.UpdateText("Gem")
.CancelText("Afbryd");
}).Width(90);
})
.ToolBar(toolbar => toolbar.Create().Text("Opret lokale"))
.Editable(editable => editable.Mode(GridEditMode.PopUp).TemplateName("arrLokaleEdit"))
.Pageable()
.DataSource(dataSource => dataSource
.Ajax()
.ServerOperation(false)
.PageSize(15)
.Events(events => events.Error("error_handler"))
.Model(model => model.Id(p => p.ID))
.Update("Lokaler_Update", "Arrangement")
.Create("Lokale_Opret", "Arrangement")
.Read("Lokale_Read", "Arrangement")
)
.Deferred()
)
This grid shows ok, but when I edit a row and save without making any changes
it calls the create action insted of update
Im using 2017.1.223.545
Hi,
Is it possible to have custom command button in TreeList?
I have tried to configure custom command button in Html.Kendo().TreeList as following:
@(Html.Kendo().TreeList<ABM.Models.AzureTreeViewData>()
.Name("ddlSubs")
.Columns(columns =>
{
columns.Add().Field(e => e.Name).Width(480).TemplateId("node-template");
columns.Add().Field(e => e.Type).Hidden(true);
columns.Add().Field(e => e.SubID).Hidden(true);
columns.Add().Command(command =>
{
command.Custom().Text(" ").Name("buttonCustom").Click("showDetails").ImageClass("fa fa-eye fa-lg");
});
})
.Filterable()
.Sortable()
.Selectable(true)
.DataSource(dataSource => dataSource
.Read(read => read.Action("TreeData", "Main").Data("subsdata"))
.ServerOperation(true)
.Model(m =>
{
m.Id(f => f.Id);
m.ParentId(f => f.ParentId);
m.Expanded(true);
m.Field(f => f.Name);
m.Field(f => f.Icon);
m.Field(f => f.Type);
m.Field(f => f.SubID);
})
)
.Height(540)
)
<script>
function showDetails(e) {
e.preventDefault();
var dataItem = $("#ddlSubs").dataItem($(e.currentTarget).closest("tr"));
var wnd = $("#Details").data("kendoWindow");
wnd.content(detailsTemplate(dataItem));
wnd.center().open();
}
</script>
Unfortunately Click event never hit in my code.
Could you please help me.
Thank you.
Hi,
the Scenario goes as follows - user fills out a form and submits it. The data from the form is merged with a word document template. I want to show the user the completed document.
here is code snippet -> return new Result { CoverSheet = memoryStream.ToArray() };
I'm stuck on how to view the document here is my razorview:
I'm stuck on how to render the coversheet. I have tried TelerikReporting and am currently looking at @(Html.Kendo().Editor()...
I see examples for how to use Import to open a word document but now how to create a view with existing data. Any help with how to proceed would be appreciated.
