<script type="text/javascript"> $(document).ready(function () { $('#windows').css('z-index', 9000); $("#Payment").kendoWindow({ actions: [ "Maximize", "Minimize", "Close"], draggable: true, height: "600px", modal: false, resizable: true, title: "<%=ViewData("paymentenginetext")%><%= ViewData("invoicenr")%>", width: "810px" }); var kendoWindow = $("#Payment").data("kendoWindow"); kendoWindow.center(); }); </script>
Hi Admin,
Kendo release new wizard component, I have one question regarding this component.
How can i add tabstrip in wizard and also please let me know how can i validate both tabs with fields.
hi,
i would like to know whether the kendo scheduler consider/changes according to the browser language. If we change language in the browser does the scheduler changes its date format patterns ( ex: "mon 6/10" in week view header), timeslot labels (ex: "8.00 A.M.") and texts(ex: monday, tuesday, wednesday... on month view) according to the new language.
Previously, we used either <br> tags or <div> tags to make multi-line tooltips, to have like a title on the first line, then additional items below (see this Dojo targeting an older version of Kendo where it worked fine). Note that "Test" is correctly in italics and is a line down from the rest of the tooltip.
But if you change the Kendo version to a more recent version, like 2020.2.617 (see this Dojo), the "Test" text is now beside the other text, not below as it should be.
I did notice that there is now a CSS rule for .k-tooltip that sets display: inline-flex, where there used to be no setting of the display attribute, and therefore the .k-tooltip element used to be the default of block.
Why did this change to "inline-flex" happen? And to get back previous behavior, do I really need to override .k-tooltip display back to block? What ramifications will that have?
Dear Concern,
I'm trying to select frist value from dropdownlist if have only one value. I have grid Add row button. When I'm clicking on Add line button (please see attached image) grid creating one row job drop-down should automatically bind if job drop-down has one value.Please see the attached file. This will help users to fill the job dropdown more quickly (no need click on dropdown) if just one job in dropdown.
If only one job in dropdown and user clicks on Add Line, Make it so that the JOB# automatically fills.
I'm trying below way but its not working.
var dataItem = _getGridCurrentDataItem(PARTS_GRID_CONTROL_ID);
if (jobs.length == 1) {
if (dataItem) {
dataItem.set("SerRecID", jobs[0]);
}
}
Thanks !
Liton