in jQuery you have the option to set the "destroy" (boolean) attribute in the editable configuration. My understanding is this enables (or disables) the "delete event" (shows as an x to the far right on the event display title). By default, this is enabled. I'm implementing the Kendo UI Scheduler in Vue.
How can I change this attribute to false (disabled)?
https://docs.telerik.com/kendo-ui/api/jsp/scheduler/editable#configuration-attributes
I am loading the kendo vue ui chart and displaying that in bootstrap cards (which is inside the bootstrap tab).
But some reason that that doesn't cover the entire width of the cards and render being so small.
There is already the style as: width: 100%; height: 100%; in the SVG of the chart but that doesn't expand. But when I changed some data then it occupies the full width.
Why it is not rendering properly initially? What's the issue causing this and what is the workaround for this?
http://jsfiddle.net/pdLncxoy/
I am trying to build a custom theme by following the instructions here.
I cloned https://github.com/telerik/kendo-themes (tried with both develop and release, same result).
The npm install && npx lerna
bootstrap
steps were successful, but I got the error below from running npm run sass
and npm run dart
:
[12:31:08] Using gulpfile ~/kendo-themes/gulpfile.js
[12:31:08] Starting 'sass'...
[12:31:08] Compiling /home/awade/kendo-themes/packages/bootstrap/scss/all.scss to /home/awade/kendo-themes/packages/bootstrap/dist
[12:31:12] 'sass' errored after 4.44 s
[12:31:12] Error: ENOENT: no such file or directory, open '/home/awade/kendo-themes/packages/bootstrap/dist/all.css'
at Object.openSync (fs.js:465:3)
at Object.writeFileSync (fs.js:1416:35)
at /home/awade/kendo-themes/packages/theme-tasks/gulpfile.js:129:12
at Array.forEach (<
anonymous
>)
at Object.build (/home/awade/kendo-themes/packages/theme-tasks/gulpfile.js:103:11)
at /home/awade/kendo-themes/gulpfile.js:100:26
at Array.map (<
anonymous
>)
at buildAll (/home/awade/kendo-themes/gulpfile.js:92:16)
at /home/awade/kendo-themes/gulpfile.js:124:12
at sass (/home/awade/kendo-themes/node_modules/undertaker/lib/set-task.js:13:15)
npm ERR! code ELIFECYCLE
npm ERR! errno 1
npm ERR! @ sass: `gulp sass`
npm ERR! Exit status 1
npm ERR!
npm ERR! Failed at the @ sass script.
npm ERR! This is probably not a problem with npm. There is likely additional logging output above.
npm ERR! A complete log of this run can be found in:
npm ERR! /home/awade/.npm/_logs/2020-08-26T16_31_12_646Z-debug.log
Hi,
using the zoom function in a chart is working very nice. Today I got a request from one of my customers.
Situation:
Consider a standard chart with time periods on the x-axis, The most recent period is to the right. If you look at the chart with all periods visible and you zoom in, the chart zooms into the center of the chart. So the most recent period drops out to the right and the older periods to the left.
Question:
Is it possible to stick the most recent period to the right, even if you zoom in? Currently it zooms into the center. The requested behaviour would be: Keep the right border and zoom in/out to the left side. So regardless of the zoom level, the most recent period is allways visible.
Best regards
Oliver
Hello,
I can't make it work to have a custom placeholder when value of kendo-date-picker is empty. It always show the expected format even with the placeholder parameter set.
Example: https://cnslg5.stackblitz.io
One would expect to have the defined placeholder to be shown and not the date-input format-placeholder. How to avoid that ?
in KendoUI for Vue
I implement one component with TreeList has father-son relationship items,Customize use checkboxes with Cascade selection。
must Use column Template to resolve,old jquery template don't support component event,So i must use native Column template。
But use native Column template ,I Found TreeList cause Repeat Data when expand Or collapse。
What is the right method,i can choose to resolve this problem。