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
Hello,
I am using multiple instances of a kendo window in a vue component where user can click on any item to get more details in a kendo window. The user can view multiple item details at a time. I need to implement a feature where user can Minimize, Restore, Drag or Close actions on any of the open window.
To save screen space I need the ability to dock the windows to either on bottom or top corner of the screen when minimize event is triggered and on restore it should move back to its original position, I expect the window to move similar to code in https://github.com/ROMB/jquery-dialogextend in kendo window widget.
Example: http://romb.github.io/jquery-dialogextend/example.html
Please can you help
Kind regards
Hammy Babar
Hello,
We have a dropdown list defined (using MVVM), as below:
<
input
data-role
=
"dropdownlist"
data-source
=
"{ data: ['One', 'Two'] }"
/>
I don't know if it's relevant, but this is from within a popup kendoWindow.
When the user clicks the middle of the dropdown, it displays correctly. If the user clicks the down-arrow on the right-hand side of the dropdown (as is conventional), the dropdown briefly expands, then hides again instantly. If I disable animations, nothing happens on click at all.
Note this is only in IE11. Chrome, Firefox, and Edge all work properly.
When I rig up an example in Dojo or JsFiddle, I don't see the problem.
Is this a familiar issue at all?
Can you suggest any possible causes?
We're using jquery-1.10.2 and Kendo UI v2017.2.621
Many thanks,
George
Hi, we tried to push the kendoFilter to its limit, by adding some custom filter components, like dropdownlist and kendomultiselect.
We do not have any problem with dropDownList, the selected value is sent to the filter as expected.
But, for the kendoMultiSelect, we do not get the "ids" in the filter value, but an array of all dataItems.
The ".value()" of the kendoMultiSelect only contains ids as expected, but in the corresponding value of the dataFilter, we see dataItems.
Look at that sample, with field/operator "multi / anyOf".
Initially, we set ids as value, and they are correctly set.
But when you click on the multiselect to change values, you will see what happen.
I can loop for all values of the "expression" and fix them, but that's not what I want.
I need to get the kmulti "value" property set as-is to the filter value. Not the complete dataItems, just the ids.
How can I do this?
I think it's a bug!
Hello,
I want to modify the value of a DropDownList column for selected rows from outside the grid.
I’m facing a problem, which can be reproduced in this sample:
http://dojo.telerik.com/urEboTUZ
When only one row is selected and the button "update" is clicked everythings works fine and as expected. However, if I select multiple rows, only the cell of the first row is updated and only this cell is marked dirty.
I would be grateful if you could tell me how to change the code, that I can change the value of multiple rows.
Regards,
Stefan
Column nested column grid resizeColumn doesn't work ?
this is demo
https://dojo.telerik.com/oHoXIkaf/4
what should i do ?
thank you
look forward to you reply