When needing to add a "Form Number" to my grids to satisfy ISO requirements for forms, I didn't want to sacrifice any vertical screen space. I added the text to the existing paging footer at the bottom left corner, where it normally appears on our paper forms.
I added the following line to my $(document).ready(function () ...
$("#grid").getKendoGrid().pager.element.prepend("<div class='docver'>EFORM: PTZ-0021 Rev: A</div>");
and then the css to keep that div in line with the paging buttons...
.docver {
float: left;
display: inline-block;
font-weight: normal ;
font-size: 12px;
}
Darron
After updating my project I get several errors about kendo-ui.d.ts
Typescript version 2.5
e.g.
SeverityCodeDescriptionProjectFileLineSuppression State
ErrorTS2430(TS) Interface 'DataSourceTransportWithFunctionOperations' incorrectly extends interface 'DataSourceTransport'.
Types of property 'create' are incompatible.
Type '(options: DataSourceTransportOptions) => void' has no properties in common with type 'DataSourceTransportCreate'.ExternC:\Users\Maurice.Lucas\Source\Repos\Juice\JuiceSolution\Extern\Scripts\typings\kendo-ui\kendo-ui.d.ts1196Active
SeverityCodeDescriptionProjectFileLineSuppression State
ErrorTS2559(TS) Type 'AgendaView' has no properties in common with type 'SchedulerView'.ExternC:\Users\Maurice.Lucas\Source\Repos\Juice\JuiceSolution\Extern\Scripts\typings\kendo-ui\kendo-ui.d.ts1542Active
SeverityCodeDescriptionProjectFileLineSuppression State
ErrorTS2415(TS) Class 'Alert' incorrectly extends base class 'Dialog'.
Types of property 'options' are incompatible.
Type 'AlertOptions' is not assignable to type 'DialogOptions'.
Types of property 'messages' are incompatible.
Type 'AlertMessages' has no properties in common with type 'DialogMessages'.ExternC:\Users\Maurice.Lucas\Source\Repos\Juice\JuiceSolution\Extern\Scripts\typings\kendo-ui\kendo-ui.d.ts1551Active
i'm facing an issue related to TIME in gantt chart.
the problem is if i'm having time at server side Start -> 1:00:00 and End -> 3:00:00 then in the browser in date field the time is showing like 1:00:00 is being shown as 6:00 and 3:00:00 is being shown as 8:00 . But when i save this task then at server side same time 1:00 and 3:00 is posted which is being done by onUpdateCreate() event method. i want to show same time which is at the server at the client side. how can i do that ?
Hello,
I would like to see the full example of Kendo Diagram for Asp.Net MVC. Especially I would like to know what is hidden behind the code in the default example You offer on website (http://demos.telerik.com/aspnet-mvc/diagram/index):
public ActionResult _OrgChart()
{
return Json(DiagramDataRepository.OrgChart(), JsonRequestBehavior.AllowGet);
}
Can You show me, what's in DiagramDataRepository.OrgChart() method, please? Or tell me, where I can find it?
Thank You!
I have a view displaying a collection as follows:
@model Portal.Models.ApplicantEmploymentHistoryVM
for (var i = 0; i < Model.ApplicantEmploymentHistories.Count; i++)
{
@Html.Kendo().RadioButtonFor(x => x.ApplicantEmploymentHistories[i].ContactSupervisor).Value(true).Label("Yes")
@Html.Kendo().RadioButtonFor(x => x.ApplicantEmploymentHistories[i].ContactSupervisor).Value(false).Label("No")
}
But the radio buttons aren't checked for the boolean values. Will it not work with collections?
I have scheduler working well in my app. Everything looks good when using a desktop computer. I have set my scheduler to use .Mobile(MobileMode.Auto) .Mobile(MobileMode.Auto) in order to get around the double-click issue with iPads. However, when my appointment edit template displays the formatting is all off and the background is gray instead of white, the fields are not visible.
I am attaching 2 files, one for how it looks on desktop (which is good), one how it looks on an ipad (which is not).
I get the feeling that nobody is really using the scheduler with ipads since the forum seems to not have much information on it and the mobile features on scheduler are primitive.
Anyone using it sucessfully? Are there any tricks? I would prefer to just have the desktop mode and work around the double-click issue, has anyone figured out a way to do that?
Thanks,
Pete
Hello! We have a problem with your KENDO UI Menu.
We are using the version 2017.1.223 (the last) and we tried to create a new Visual Studio 2015 MVC solution and tried to insert the menu using the examples we found in the following links.
http://demos.telerik.com/kendo-ui/menu/index
http://demos.telerik.com/aspnet-mvc/menu/index
If you paste HTML5 code everything works perfectly, but if we use ASP.NET MVC code, we get the following error
Uncaught TypeError: kendo.syncReady is not a function
Can anyone help us solve the problem? (because we want use Razor Syntax for C#)
Thanks!