Hi,
How can I replace multiselect item remove icon with the old one? The new icon is svg icon. My version is 2024.3.1015
new icon
old icon
my onclick event not firing after grid sort.
grid columns markup
columns: [
{
field: "", title: "", width: "150px", attributes: { "class": "ps-0" }, template: function(dataItem) {
var actionHtmlContent = '';
if (dataItem && dataItem.canEdit) {
actionHtmlContent += '<a class="btn btn-link" href="' + contactDetailLink + '/1/' + dataItem.id + '">';
actionHtmlContent += '<em class="material-icons material-edit" style="color:#0D4EA2;"></em>';
actionHtmlContent += '</a>';
}
if (dataItem && dataItem.canDelete) {
actionHtmlContent += '<a class="btn btn-link delete-button" title=" " aria-label=" " href="?AppContactID=' + encodeURIComponent(dataItem.id) + ' &handler=Delete">';
actionHtmlContent += '<em class="material-icons material-delete" style="color:#0D4EA2;"></em>';
actionHtmlContent += '</a>';
}
return actionHtmlContent;
}
},
{ field: "salutation", title: "Salutation", width: "130px" },
{ field: "fullName", title: "Full Name", width: "200px" },
code to attach onclick
$(".delete-button").on("click", function () { return confirm('Are you sure you want to proceed?'); });
my js tag has nounce, thus i can't add the event listener to the html tag itself.
after i sort the grid, when user click on the .delete-button the confirm popup is not showing
Hi,
I am attempting to update our current version of Kenduo UI for Jquery from 2023.1.117 to 2024.4.1112.
I have downloaded the commercial release zip and have updated the references to the js and css files (as I have done with previous upgrades), however I am experiencing lots of styling issues for font sizes and layout across inputs ans widgets.
Firstly, the text size is much smaller for inputs and widgets.
The display of widgets on different browsers is inconsistent (for example the calendar widget is being cut off on FireFox, but is spanning the whole screen on Chrome - screenshots attached).
Any ideas what could be causing this?
Hi,
I need to replace svg icons with custom icons. I found this in the documentation How to Add Custom SVG Icons to Kendo UI for jQuery - Kendo UI for jQuery I need something similar. Looks like does not work for earlier version. My version is 2024.3.1015. Is there a way to be done in earlier version?
Hi Team,
We extensively use Kendo UI jQuery in our application for various front-end activities. Recently, we attempted to upgrade our Kendo UI version from 2021 to 2024 and encountered issues with comboboxes, dropdowns, and lists.
Many of our controls rely on dynamic data that changes based on multiple factors and requirements. This functionality is critical to our application. However, post-upgrade, we have observed unexpected behavior, as illustrated in the attached screenshots.
To help replicate the issue, we have created a sample in the Kendo Dojo, which can be accessed via the following link:
https://dojo.telerik.com/WyKWJZpa
Please note, The reported behavior is seen in combobox2 on change of combobox1
This behavior was not present in the previous version, and the upgrade seems to have introduced this issue. Since this implementation pattern is widespread in our application, modifying the code everywhere is not a feasible option.
We kindly request your assistance in identifying a quick and efficient resolution to this issue.
Thank you in advance for your support.
Just to clarify is it still the case that graphs and charts are not embeddable into the spreadsheet control:
Spreadsheet with a chart? in Kendo UI for jQuery | Telerik Forums
This was 2016, I couldn't find anything in the documentation that it was added. So assuming this is still the case.
Is it still the case the charts and graphs have to be part of a separate control? like a Kendo UI Chart?
Thanks,
George
<script type="text/x-kendo-template" id="gDropdownListTemplate">
# var required = typeof options.required === 'undefined' ? false : options.required; #
# var isRemote = typeof options.isRemote === 'undefined' ? false : options.isRemote; #
# var filterable = typeof options.filterable === 'undefined' ? true : options.filterable; #
# var enable = typeof options.enable === 'undefined' ? true : options.enable; #
<input
required="#= required ? 'required': '' #"
id="#= options.key #"
name="#= options.key #"
data-role="dropdownlist"
data-value-primitive="true"
data-text-field="label"
data-value-field="value"
data-filter="#= isRemote && filterable ? 'contains' :'none' #"
data-index="#= options.index || -1 #"
data-auto-bind="#= options.autoBind #"
data-option-label="#= options.optionLabel || '' #"
data-enable="#= enable #"
data-min-length="#= options.minLength || 1 #"
data-value="#= options.value || '' #"
data-change="#= options.change #"
data-bound="#= options.dataBound #"
data-source="#= options.dataSource #"
data-required-msg="#= $.gForm.requiredMessage #"
data-height="#= isRemote ? 250 : 200 #"
data-virtual="#= options.virtual ? '{ itemHeight: 32, valueMapper: $.gCommon.valueMapper }' : false #"
/>
</script>




when autobind is true (isEdit=false), the api is triggered, but no loading effect

when autobind is false, then manually set the value
.
the api is not triggered.
but if I disable virtual scrolling, everything works fine....
plus if I do it in this way, it works , too


I would like to check how to add an icon to the grid header. The tooltip will only be shown when hovering the icon.
Hi Team,
We extensively use Kendo UI jQuery in our application for various front-end activities. Recently, we attempted to upgrade our Kendo UI version from 2021 to 2024 and encountered issues with comboboxes, dropdowns, and lists.
Many of our controls rely on dynamic data that changes based on multiple factors and requirements. This functionality is critical to our application. However, post-upgrade, we have observed unexpected behavior, as illustrated in the attached screenshots.
To help replicate the issue, we have created a sample in the Kendo Dojo, which can be accessed via the following link:
https://dojo.telerik.com/WyKWJZpa
Please note, The reported behavior is seen in combobox2 on change of combobox1
This behavior was not present in the previous version, and the upgrade seems to have introduced this issue. Since this implementation pattern is widespread in our application, modifying the code everywhere is not a feasible option.
We kindly request your assistance in identifying a quick and efficient resolution to this issue.
Thank you in advance for your support.