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+ '
}Using Kendo UI for ASP.MVC with jQuery, version 2022.1.301. Here are the steps:
The issue is step 4. I have been debugging through kendo.all.js and I can provide a small bit of inside. The issue lies at line 64,761 which is a function called _inputFocusout. When I click in the multiselect in step 1, the input box is focused and the cursor is blinking. When I click in it the second time the cursor doesn't show, rather "1 item(s) selected" is showing. So the focus out event doesn't happen now, and it works.
Oddly this works in the demos but I can't see anything I am doing wrong.
@(Html.Kendo().MultiSelectFor(m => m.SelectedEmployees)
.AutoBind(true)
.AutoClose(false)
.BindTo(employeesSmall)
.DataTextField("NameFirstLast")
.DataValueField("Id")
.Name("employees")
.TagMode(TagMode.Single)
)