With Kendo-UI being more of a widget framework as opposed to a css framework, are there any recommended css frameworks out there that will suite kendo-ui? Looking for a material based css framework to handle layout/grid setup. Also looking for a Vue3 based framework, which unfortunately Vuetify is not at that level yet (still alpha).
I you have implements other css frameworks, were there any pitfalls/hurtles to get both frameworks working together? Issues like clashing themes/styles, build issues, etc.
As mentioned before, I predominantly need this css framework for the layout/grid setup, so technically I don't really need a 'full on' css framework as setups like simple grid or flexbox are probably all I need, buuuuuuut .... other css frameworks like Vuetify, Vue Material, Chakra, etc do have alot of other components that either aren't in kendo or are a bit more user friendly.
Hi,
I am using the kendo-datepicker and set it up as below.
<kendo-datepicker ref="datePickerFrom" :format="'yyyy-MM-dd'" v-model="from" :culture="local"
:start="'month'" :depth="'month'" :max="to" :week-number="true">
</kendo-datepicker>
I wonder on what basis the week number is calculated.
Please answer whether it follows the ISO standard or if there is another standard.
Hi All,
i need to disable the input of an Editor control in my vuejs project but seems that Kendo-Editor do not have a property like contenteditable/disabled/readonly i prefer not to deal with a layer of some z-index div to workaround this needs.
Is there any way (like the one with jquery to set the contenteditable to false) to achive this?
Thanks a lot
When a user enters trailing zeros I want the Numeric Textbox to keep them.
Here's an example of what I mean:
https://stackblitz.com/edit/kb6qcu?file=src/main.vue
Enter 17.00001, it keeps the decimals correct
Enter 17.00000, it removes all trailing zeros
Is it possible to configure the NumericTextbox to keep trailing zeros when the user explicitly enters them?
I've basically took the example stackblitz from the dropdowntree wrapper:
https://www.telerik.com/kendo-vue-ui/components/dropdowntree-wrapper/checkboxes/
And I added:
<script src="https://kendo.cdn.telerik.com/2019.1.115/js/kendo.all.min.js"></script>
and
<script src="https://code.jquery.com/jquery-3.5.1.min.js"></script>
https://stackblitz.com/edit/8ahikr?file=public%2Findex.html
Unfortunately, due to constraints, I can't upgrade the kendo.all.min.js bundle to 2021, or downgrade the jQuery version to 1.12.1
Is there a Kendo DropDownTree npm package version that works with both jQuery 3.5.1 and 2019.1.115 kendo.all.min.js? Or is this a bug that can be fixed?
Thanks in advance
Does the VUE Spreadsheet component have a method to listen for upload events so that I can do other operations after the upload is successful
There is no way to control the fixed format of exported templates, other people cannot insert rows or insert columns, and changing font colors is not allowed
How do I save the value from this dropdowntree component onChange?:
https://www.telerik.com/kendo-vue-ui/components/dropdowntree-wrapper/
With the multiselect and dropdownlist components I can use
e.sender.dataItems();
and
e.sender.dataItem(e.sender.select());
respectively
But for the dropdowntree component there isnt't a dataItem attached to the event sender object.
Currently I'm using the Kendo native grid component and I want to make use of the master-detail template functionality:
https://www.telerik.com/kendo-vue-ui/components/grid/custom-rendering/hierarchy/
However when enabling this the expand buttons are always on the left column and I can't change the styling easily.
Is it possible to make a custom expand button via the use of a function or something that will also open each row's detail template?