I have been trying to upgrade Jquery to 3.3.1 for my project in RequireJS but it's giving error kendogrid is not a function.
So I used latest Kendo.all.min but still the issue is not resolved.
Please find attached sample code file link below
Hello,
According to https://docs.telerik.com/kendo-ui/intro/supporting/browser-support we understand you support the latest version of Edge browser.
We have a problem with columns chart we implemented. It looks great in Chrome, Safari and Firefox but in Edge browser the columns shift.
Are you familiar with such problem? Can you advise?
Thanks,
Ron
I have a rest service that I can call in Postman
Type: Post
Header: Content-Type: application/json
Body:
{
"searchParam" :{
"from" : "2019-02-11T00:00:00Z",
"to" : "2019-02-16T00:00:00Z"
},
"filterParam":{
"deviceName":"1",
"devices":["111"],
"channels":[]
}
}
But is this the correct format for the kendo datasource for a post? (with parameters). I keep getting response errors when trying to connect.
channelData: new kendo.data.DataSource({
transport: {
read: {
url: "http://localhost:20212/api/",
type: "POST",
contentType: "application/json",
data: function() {
return {
searchParam: {
from: "2019-02-11T00:00:00Z",
to: "2019-02-15T00:00:00Z",
},
filterParam: {
deviceName: "1",
devices:
"111"],
channels: [],
}
}
}
},
}
}),
Hi, i'm include localization files to my project:
<script src="js/kendo.culture.ru-RU.min.js"></script>
<script src="js/kendo.messages.ru-RU.min.js"></script>
It's works fine, but DataRangePicker label still English ("Start", "End"), how i can localize it?
Hello!
Would you please give me an idea where to start to solve the following problem:
I need two list boxes, lets' call them palette and list.
I need to perform following actions via drag and drop:
1) COPY items from 'palette' to 'list' (e.g. item remains in 'palette' and appears in 'list'),
2) reorder items in 'list'
3) REMOVE items from 'list' (e.g 'item disappears at 'list' but does not appear at 'palette').
4) I do NOT need reordering in 'palette'.
A practical example of such task would be... let say you have a restaurant menu and want to build an order dragging menu items into the order.
My guess was that it should be possible via analyzing the current drop target in drop or dragend events, but it seems like all I have there is the drag source and the items dragged.
The source code seems to try to determine the drop target via searching which of two listboxes (source or 'connected') the current placeholder belongs to, however I hesitate to use this approach as placeholder information seems to be not a part of public API, so, I guess, there is no promise of backward compatibility in future.
I also found an example you provided few years ago, where similar problem partially solved by simply adding the removed item back to palette, but this looks quite weird, I would hesitate to use such visual behavior in a real project.
So, I would really appreciate a head up at an approach to be used, or to a good example on how this task is supposed to be solved in Kendo UI for JQuery architecture.
Thank you very much for your time!
I've noticed that the dialog control is very good at handling changes to the width of the browser window. No matter how I resize my browser, the width is no wider than the window, and never exceeds the width I specified in the configuration.
Unfortunately, it doesn't seem to really care about the height of the browser window. If I specify a height that's taller than the browser window, or resize the browser to be shorter than the dialog, the dialog extends past the bottom of the browser window and you are unable to see all of the dialog or access the buttons.
I wish it handled the height as well as the width. Any chance that can be implemented?
I was able to accomplish this with the code below. In Firefox, I tend to lose the padding below a tabstrip control, but otherwise, it's been ok, though I think you guys could do a better job that I've managed to implement. I also don't want to have to support the code. :)
var maxHeight = 1;
for (var i = 0; i < $("[data-id='ForgotWindow']").parent().children().length; i++) {
maxHeight += $("[data-id='ForgotWindow']").parent().children()[i].scrollHeight
}
var newSize = Math.min(window.innerHeight - 25, maxHeight) + 'px';
_forgotDialog.setOptions({
height: newSize
});
_forgotDialog.open();
FYI, I create the dialog with a DIV that has the attribute data-id="ForgotWindow", and I've set it to the variable _forgotDialog.
<
input
id
=
"coursecats"
style
=
"width:400px;"
/>
$(
"#coursecats"
).kendoDropDownList({
index: 0,
dataTextField:
"Title"
,
dataValueField:
"CourseID"
,
filter:
"contains"
,
dataSource: courses
});
Hi , I'm experiment some issues with kendo UI Jquery , and KendoVue and i want to share them , maybe its goona help some furter development o just to having in mind, talking with the voice of a little development team from latam , first of all kendo was a huge help in our development team , we use all the componentes of the UI daily , but we found some insolved error in some widgets and in the end of the day we prefer to use other tecnics , if you can at least take a moment to check it in furter updates will be a great help .
Our Issues beggins with the level of costumization of a grid and growing up after that , re create the error in a dojo will take us some time and mostly is because are to many ways to get there. some of the issues are.
- When you use the " refresh" method of the jquery grid several times , and after that you use customized buttons on the same grid without reload the entire frame/page, the accion of the button is executed as many times as you fire the "refresh" method .
- The Kendo UI jquery grid check button column as is provided for the UI ,doesnt suppor the incorporation of customized acction buttons , in some randomly ocations doesnt fire the event's
-When you have a widget that display a k-list like multiselect , dropdown , combobox mounted in a kendo window , if the k-list is too long the z-index of the element is the same of the window and make a effect of "cuted data " , some other users have the same issue https://www.telerik.com/forums/kendodatepicker-z-index
- In kendo Vue , change de data source of a mounted element is imposible if you not use the kendo-vue-datasource component , you have to re build the entire element,
That some of the issues we have experiment , thank you for your time.
Hi,
I have implemented the treeview which has roughly 3000 to 5000 multilevel json objects.The treeview takes lots of time to load and render and fails sometimes. I have some concerns in implementing the treeview,
* I had to apply checkbox checkchildren option to keep the selected & unselected nodes.
* I couldn't apply neither loadondemand nor remote data binding option since i wanted whole datasource for storing and retrieving purpose from the db.
If I apply checkchildren option the browser hangs and kills the script. The treeview loading faster if checkchildren is set to false. I have tried with setTimeout option to enable the checkchildren after loading the treeview, but again it hangs whenever its getting applied to the treeview.
I have an example from this below link.
http://jsfiddle.net/paulrajj/ymxgfb7p/
Kindly let me know if is there any work around or solutions to solve this issue. Thanks.