
Hi,
Currently I am maintaining a couple of different versions of a project. The selectable option is working but the colors when a row is selected are off a bit:
Here is the older version of Kendo UI for jQuery (2020.3 SP1):
The newer version of Kendo (2023.3 SP1) changed the color, and it works nicely with my child grids:
How can I change the older Kendo UI so it looks more like the newer version? So when selected the background color changes enough that the letters are visible in front of the background color? I am guessing there is a way to do this via a cascading style sheet?
P.S. Here is a DOJO with my code:
https://dojo.telerik.com/@georgeg@pipkins.com/aZAwIRaX
Regards,
George
Hi,
In the jQuery Spreadsheet Widget, it is possible to add a comment to a cell. When the comment contains a newline character '\n', then the comment tooltip of the spreadsheet does not show the newline.
How can we allow newlines in a comment tooltip of a Spreadsheet Cell?
( I think that the js kendo version 2022 contained that functionality)
Kind regards!
I don't want users to set UNITS while assigning tasks to resources, either I want to disable that column or hide the column. The default value should always be 100%.
I have a problem with DropDownMenu in the KendoGrid: https://dojo.telerik.com/aFoTuXoy
I tried to add DropDownMenu (from bootstrap) to cell inside of KendoGrid.
Also I added style to code (I found this reference early: https://stackoverflow.com/questions/68672182/boostrap-dropdown-menu-in-kendo-grid-cell-template):
<style type="text/css">
.k-master-row td {
overflow: visible !important;
}
</style>But it didn't help me and menu hides inside of table.
I need to add DropDown menu to Main and Detail tables.
I've figured out how to initialize a ButonGroup with badges using this documentation:
items - API Reference - Kendo UI ButtonGroup - Kendo UI for jQuery (telerik.com)
Now I want to update badge options or remove a badge after initialization. I found this documentation:
badge - API Reference - Kendo UI ButtonGroup - Kendo UI for jQuery (telerik.com)
However, this only seems to allow updating the text value of the badge. I want to be able to update other things like themeColor. Furthermore, if a badge is removed by calling:
buttonGroup.badge(index, false);I am having an issue getting my controller code to get called from the UI. Here is what I have tried.
<script type="text/javascript">
$(document).ready(function () {
$("#pdfViewer").kendoPDFViewer({
fromFile: {
url: "@Url.Action("DetailsReport", "ReportViewer")"
}
});
});
</script>
--RAZOR PAGE
@(Html.Kendo().PDFViewer()
.Name("pdfViewer")
)
Controller ActionMethod (never gets called).
returns File(bytes, mimeType).