Telerik Forums
Kendo UI for jQuery Forum
1 answer
110 views

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

Nikolay
Telerik team
 answered on 24 Dec 2024
3 answers
104 views

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

Alex
Top achievements
Rank 1
Iron
 updated answer on 24 Dec 2024
0 answers
102 views

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?

Icon
Top achievements
Rank 1
 asked on 23 Dec 2024
0 answers
49 views

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?

Todor
Top achievements
Rank 1
 asked on 20 Dec 2024
1 answer
51 views
This can be tested using the Kendo editor demo on the website.  Create a table using the Wizard and under the Advanced tab, create a Caption in the Accessibility options.  Select a bottom alignment for the caption.  Although the style of vertical-align: bottom is applied to the caption, the text of the caption is still shown above the table.  Is this the correct way for the caption alignment to work?  Our clients expected the caption to be positioned below the table when selecting one of the bottom alignment options.  Thanks for any help.
Martin
Telerik team
 answered on 19 Dec 2024
1 answer
94 views

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.

Neli
Telerik team
 answered on 19 Dec 2024
1 answer
43 views

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

Nikolay
Telerik team
 answered on 18 Dec 2024
1 answer
53 views
 

 


<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

 

 


 

Martin
Telerik team
 answered on 13 Dec 2024
1 answer
49 views

I would like to check how to add an icon to the grid header. The tooltip will only be shown when hovering the icon.

 

Martin
Telerik team
 answered on 13 Dec 2024
0 answers
95 views

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.

 

 

 

IT
Top achievements
Rank 1
 asked on 12 Dec 2024
Narrow your results
Selected tags
Tags
Grid
General Discussions
Charts
Data Source
Scheduler
DropDownList
TreeView
MVVM
Editor
Window
DatePicker
Spreadsheet
Upload
ListView (Mobile)
ComboBox
TabStrip
MultiSelect
AutoComplete
ListView
Menu
Templates
Gantt
Validation
TreeList
Diagram
NumericTextBox
Splitter
PanelBar
Application
Map
Drag and Drop
ToolTip
Calendar
PivotGrid
ScrollView (Mobile)
Toolbar
TabStrip (Mobile)
Slider
Button (Mobile)
SPA
Filter
Drawing API
Drawer (Mobile)
Globalization
LinearGauge
Sortable
ModalView
Hierarchical Data Source
Button
FileManager
MaskedTextBox
View
Form
NavBar
Notification
Switch (Mobile)
SplitView
ListBox
DropDownTree
PDFViewer
Sparkline
ActionSheet
TileLayout
PopOver (Mobile)
TreeMap
ButtonGroup
ColorPicker
Pager
Styling
MultiColumnComboBox
Chat
DateRangePicker
Dialog
Checkbox
Timeline
Drawer
DateInput
ProgressBar
MediaPlayer
ImageEditor
OrgChart
TextBox
Effects
Accessibility
PivotGridV2
ScrollView
BulletChart
Licensing
QRCode
ResponsivePanel
Switch
Wizard
CheckBoxGroup
TextArea
Barcode
Breadcrumb
Collapsible
Localization
MultiViewCalendar
Touch
RadioButton
Stepper
Card
ExpansionPanel
Rating
RadioGroup
Badge
Captcha
Heatmap
AppBar
Loader
Security
Popover
DockManager
FloatingActionButton
TaskBoard
CircularGauge
ColorGradient
ColorPalette
DropDownButton
TimeDurationPicker
ToggleButton
BottomNavigation
Ripple
SkeletonContainer
Avatar
Circular ProgressBar
FlatColorPicker
SplitButton
Signature
Chip
ChipList
VS Code Extension
AIPrompt
PropertyGrid
Sankey
Chart Wizard
OTP Input
SpeechToTextButton
InlineAIPrompt
StockChart
ContextMenu
TimePicker
DateTimePicker
RadialGauge
ArcGauge
+? more
Top users last month
Jay
Top achievements
Rank 3
Bronze
Iron
Iron
yw
Top achievements
Rank 2
Iron
Iron
Stefan
Top achievements
Rank 2
Iron
Iron
Iron
Kao Hung
Top achievements
Rank 1
Iron
Bohdan
Top achievements
Rank 2
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Jay
Top achievements
Rank 3
Bronze
Iron
Iron
yw
Top achievements
Rank 2
Iron
Iron
Stefan
Top achievements
Rank 2
Iron
Iron
Iron
Kao Hung
Top achievements
Rank 1
Iron
Bohdan
Top achievements
Rank 2
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?