Dear Team,
We are using Kendo UI v2022.2.510 our requirement is to display the page numbers in kendo grid in drop down in vertical from.. but as of now it is showing page numbers horizontal line in kendo grid.
Thanks in Advance.
Hi there,
I have a question about timeline view on https://demos.telerik.com/kendo-ui/scheduler/timeline. When I create a series event, the series event before the day will be disappeared by moving or resizing the event of one day among the whole series event.
For example, I create a series event between 2022-07-21 and 2022-07-23. In 2022-07-22 view, I move or resizing the series event , then the event in 2022-07-21 is disappeared . Actually, I want to change the whole series event between 2022-07-21 and 2022-07-23 by changing the event in 2022-07-22.
Would you tell me how to solution this problem?
Thank you so much !
Hi,
Like Demo https://dojo.telerik.com/ojOwIcIB
I want to change field [attendees] validation message when field input value is empty,
I referred
https://www.telerik.com/forums/kendo-scheduler-change-field-validation-message
and
https://dojo.telerik.com/AsAjOdiv
Like this :
e.container.find("[data-container-for=attendees] select[data-role=multiselect]").attr("data-required-msg", "New Validation Message!");
It's not work....
Thank you very much for your help.
Dear team,
I want to display page numbers in drop down by default,When screen size is smaller we are getting dropdown,but i want drop down in large screen also
Hello Team,
Could you let us know how to reduce the size of "kendo.all.min.js" (4.09 MB), kendo.bootstrap-v4.min.css (839 KB) and kendo.common.min.css (385 KB).
Thank you.
Hi,
I'm trying to get the tooltips to show when hovering over the chart when there's a selector on the chart.
Without the select the tooltips show but not with it. (Images attached)
The select uses a mask that covers the chart, I tried changing the css z-indexes but had no luck and can't find any possible work around.
Hi, I'm working with the Kendo jQuery OrgChart widget and for some reason it is blowing up to a huge size and I haven't had any luck adjusting it. Here is a dojo of the data I'm working with (https://dojo.telerik.com/ibiniBuW). It doesn't seem to have many more nodes than the demos but it automatically takes up a huge amount of space. The dimensions seem to default to height: 2413px and width: 10399px no matter the size of the parent div.
I have tried resizing the div itself and then using styling on the k-orgchart-container class and neither method changed anything. I have also tried setting height, width, and chartArea from within the widget and none of those changes made any difference either.
Any help would be much appreciated, thanks!
var searchTerm = params.term && params.term != "" ? params.term : islNewsArticle2LastSearchTerm;
var payload ={
"valueFilters": [
{
"field": "preDistLocationIds",
"values": [
"2787"
]
},
{
"field": "distLocationIds",
"values": []
},
{
"field": "createdByLocationLevelId",
"values": []
},
{
"field": "taskLevelId",
"values": [
"118"
]
}
],
"rangeFilters": [
{
"greaterThanOrEqual": "2022-06-11",
"field": "startDate"
},
{
"lessThanOrEqual": "2022-07-11",
"field": "endDate"
}
],
"sorts": [],
"limit": 50,
"q": '+searchTerm+ '
};
var new1 = new kendo.data.DataSource({
transport: {
read: function(s) {
$.ajax({
delay: 350, // wait 250 milliseconds before triggering the request
url: "https://"+'@Session.OrgUrl~'+"/searchapi/taskviews/tasklist",
type: "post",
data: JSON.stringify(payload),
dataType: 'json',
contentType: "application/json",
beforeSend: function(req) {
req.setRequestHeader('Authorization', "Bearer @Session.AuthToken~");
},
processResults: function (data) {
//console.log("results: "+data.results.length);
var res = [];
if(data && data.results){
for(var i = 0 ; i < data.results.length; i++) {
res.push({id: data.results[i].objectId, text: data.results[i].title});
}
}
return {
results: res
}
},
complete: function(){
}
});
}
}
});
$("#islTasks").kendoMultiSelect({
placeholder: "Select Tasks...",
filter: "contains",
autoBind: false,
dataValueField: "objectId",
dataTextField : "title",
dataSource : new1
});
{
"valueFilters": [
{
"field": "preDistLocationIds",
"values": [
"2787"
]
},
{
"field": "distLocationIds",
"values": []
},
{
"field": "createdByLocationLevelId",
"values": []
},
{
"field": "taskLevelId",
"values": [
"118"
]
}
],
"rangeFilters": [
{
"greaterThanOrEqual": "2022-06-11",
"field": "startDate"
},
{
"lessThanOrEqual": "2022-07-11",
"field": "endDate"
}
],
"sorts": [],
"limit": 50,
"q": '+searchTerm+ '
}