Hi,
When we use scheduler resource grouping with <kendo-scheduler-resource> and double click on an empty time slot or existing appointment it will scrollup the scheduler and lost the previous location where it was. This issue is replicating in the official demo as well inisde below url
"https://www.telerik.com/kendo-vue-ui/components/scheduler/resources/grouping/"
My testing environment is Chrome 80 and Firefox 72.
Thanks!
Hello everyone!
I am trying to implement a search field component based on kendo-combobox wrapper.
I want to cover via JEST unit tests the changed value but I can not trigger the change event and assert the component value.
I am sharing with you guys this code example : https://codesandbox.io/s/tender-proskuriakova-89bcm?fontsize=14&hidenavigation=1&theme=dark
Can you help me on this assertion : expect(wrapper.vm.$data.value).toEqual(1);
hi,
When we use an event template along with a scheduler and when we double click to edit the event first time it shows the correct appointment. but when close it and we double click the same appointment it shows a wrong appointment in the edit modal.
it replicates in the official docs as well which is here- https://www.telerik.com/kendo-vue-ui/components/scheduler/templates/
Hi
I want to show the average line for each group on the bar chart.
For example, I want to display like an attached file.
I am developing using VUE.js. please answer about my question.
Hi,
Trying to implement grid (native) filtering. It has a date time column. Filtering seems to not work for this column.
https://stackblitz.com/edit/gqlmpp
I have started using the new Vue Native DropDownList and found a few issues when it is used inside a popup (bootstrap-vue modal).
The dropdown list will not display. I can make it display by adding:
.k-animation-container {
z-index: 100000;
}
Now it displays but clicking out side the dropped down list will not close it.
Wayne
Is their any documentation / demos available for formatting Kendo components with css?
Specially formatted data, e.g. negative numbers in red.
I want to enable/disable a kendo combobox based on the user's selection from a checkbox, which I am storing in a variable.
I already tried setting the variable to the enable property, but this is useful only when the control is being built-in.
Does anybody know If I can do this while creating the control?
<div id="fund" class="col-xs-3"> input class="required" data-bind="title: $parent.selectedFund, kendoComboBox: { placeholder: 'Start typing to search...', value: $parent.test, widget: $parent.searchSource, dataTextField: 'managerName', dataValueField: 'managerId', filter: 'contains', autoBind: false, minLength: 3, enable: overrideGlobalMapping, //this does not work for me even though the variable holds the correct value change: function(){ if(this.value() && this.selectedIndex == -1){ setTimeout(function () {$parent.selectedManagerId(null);}, 100);}}, dataSource: { serverFiltering: true, transport: { read: $parent.retrieveManager }}}" /></div>
Hello
I have a question about the tooltip function.
I've made a modification to Tooltip-Multiple Targets.
-remove width props
-Tooltip insertion for each language
https://www.telerik.com/kendo-vue-ui/components/popups/tooltip/multiple-targets/
If you hover over a long tooltip, it will appear properly, but if you check the short tooltip first and then try to see the long tooltip, the tooltip's width will be shortened.
Hopefully the width will be adjusted to auto.
<div id="vueapp" class="vue-app">
<kendo-tooltip ref="kTooltip" id="agglomerations" :filter="'span'" :position="'bottom'">
<span href="#" title="방탄소년단·태연, '서울가요대상' 앨범·음원 대상…엑소 4관왕(종합)">Korean</span><br /><br />
<span href="#" title="방탄" id="losangeles">Korean - Short</span><br /><br />
<span href="#" title="Apple Music is available in iTunes, and for iOS and Android devices.">English</span><br /><br />
<span href="#" title="BTS" id="osaka">English - Short</span><br /><br />
<span href="#" title="注文書、請求書などを装ったメールに添付された Excel ファイルに注意">Japanese</span><br /><br />
<span href="#" title="注意" id="moscow">Japanese - Short</span>
</kendo-tooltip>
</div>
Hi,
Is there a way to use Vue Templates (as per explain here: https://www.telerik.com/kendo-vue-ui/components/framework/vue-templates/#toc-using-single-file-components) for category labels in Kendo Charts ?
Because it does work with the Scheduler Event Template, but with the Chart all I can get is to print a div text (it is really print as his, not an empty div):
<
div
id
=
"kendoGUID"
></
div
>
CodeSandBox: https://codesandbox.io/s/vue-template-ddl-d2jhq
Thanks for your help !