I am using SignalR, to add items to a sheduler datasource.
when adding an appointment if someone is also on an appointment, close the window event,
there is a way to update the agenda without closing the window event
schemaData function not working.
My app use kendo datasource.
code> export default { data(){ return { ds: new kendo.data.DataSource({ ...
schema: { data: function(response){ ...}
But schema data function is not invoked when it call ds.read() fucntion.
How can i fix it?
It was working last week but not now. What's goning on my code?
Please let me know what is wrong.
Hi All,
How can we create , show , hide button in grid using vue js
Hi All,
We wish to start new project using Kendo UI and using Vue.Js. My requirement Listing Below
In my application i had above 10 menus. When i click each menu it will load grid with data. When i login application it will land in default page with grid and corresponding menu will be active. when i click second menu i want to minimize first grid data and load second grid data, when i click third menu again i want to minimize second grid data and load the third grid data. like that remaining menus. But when i click first or second or third minimized grid (not in menu) i want show that grid data . its will show only existing data(not going to data base and retrieve data). How will achieve this requirement using Kendo UI and vue.js? i don't use session state kind of state management methods
Hi,
is there a way to open the date picker programmatically by passing a property? If not are there any alternative ways to do this? I need to open the date picker on label click in vue using type script.
Thanks
Hi, I have used Kendo UI for Vue for quite some time now. I noticed that Kendo Dropdownlist components have the PopupAppendTo props to bind the dropdown to the element in template, while majority of the other components do not have and ending up appended to the body-tag (outside of <div id='app'>).
I'm quite surprised to see this because Vue.js only has control over the <div id='app'> element and Vue.js recommends against using body-tag. Why don't other components have this props as well so that Vue.js has full control over the Kendo UI components?
Dear Telerik Forum Admins,
Please find attached a screenshot of my current kendo-grid setup and DataSource.
I have implemented the excel functionality on my Vue Grid Wrapper, but the excel only contains the amount of records specified within the pageSize property of my DataSource.
I found a similar issue on the Angular form mentioning the fetchData property on the Angular Grid, but it is not clear to me how this should be implemented within Vue.js.
Could you please assist me in being able to implement both functionalities?
Kind regards,
Natasha L
Hi All,
I am new to vue.js and using kendo UI to display data. How can i pass value or parameter to web api from vue.js
Hi. I'm relatively new to vue-cli and I am having issues when running in development ('npm run serve'/'vue-cli-service serve') mode, particularly with the kendo components. The project runs fine in production mode, but I get all sorts of errors when running in dev mode.
I know the issue has to do with the compiling of components, and I know I have to add something to the vue.config.js file. I'm just not sure what that is. This is what my vue.config.js file looks like now:
const path = require('path');
function resolve (dir) {
return path.join(__dirname, dir)
}
module.exports = {
publicPath: '.',
devServer: {
proxy: '[URL]'
},
lintOnSave: true,
chainWebpack: (config) => {
config.resolve.alias.set('vue$', 'vue/dist/vue.esm.js')
}
}
I have read this page, but that deals with vue-cli 2, not 3. (https://github.com/vuejs/vue/issues/2873)
Any help is appreciated.