Hello,
I'm trying the Kendo UI with lastest version and I'm facing to an issue using the TreeList component under Chrome (80.0.3987.122).
Please see the attached screenchot, coupling kendo ui 2020.1.219 with jQuery 3.4.1, the height of the first row is not initialized correctly.
You can run this demo here: https://dojo.telerik.com/EsobuqAH
Note it works under FireFox.
Any Idea ?
Thx.
Julien.
I want to create a dropdownlist named 'font size' that helps a user select font size out of the values lets say 12 pt, 14 pt, 16 pt....and so on.
These list items should not all appear with the same font size but should rather appear with a font size they represent. For example - 12 pt must show in 12 pt size, 14 pt in 14 pt size and so on.
Is it possible to show different list items in a dropdownlist in different font sizes? If yes, then how?
Thanks in anticipation.
Hi,
As my title says, Im trying to bind MVVM attributes to command buttons in a KendoGrid. At the moment im struggling with binding an 'enabled' attr.
Dojo: https://dojo.telerik.com/AXojaNuT
In the above, I've bound the enabled state to a command button but it only makes the button look disabled, its still clickable.
Please advise.
Thanks,
Grant
public class BasicInformation
{ [Display(Description = "Patient's height", Name = "Height (Inches):")] [Required(AllowEmptyStrings = false, ErrorMessage = "Height requires a value to be entered.")] [Range(12, 96)] public double Height { get; set; }}BasicInformation bi = new BasicInformation(); return View("Step2", bi);@(Html.Kendo().NumericTextBoxFor<double>(model => model.Height).Name("txtHeight").Decimals(0).Format("##")
)@Html.EditorFor(model => model.Height)I'm kind of new to JQuery, Json, MVC and all so my problem is probably simple to fix but for some reason, I can't seems to find the answer.
I'm trying to use the Kendo DropDownList to call an MVC action that takes a parameters and sends a query to an ElasticSearch server. So far I have this code :
$('#myInput').kendoDropDownList({
template: $("#inputTemplate").html(),
dataValueField: 'Id',
dataTextField: 'FullName',
filter: 'contains',
minLength: 3,
dataSource: {
serverFiltering: true,
transport: {
read: {
url: '@(Url.Action("ElasticSearch", "Participant"))',
dataType: 'json',
contentType:'application/json; charset=utf-8',
data: {
critere: 'bob'
}
}
}
}
});
This is actually working .... if I only want to search for "bob". But I can't figure out how to send the text from the seach field in the dropdownlist each time that I type something.
What am I missing here?

I've looked at the DevExpress HTML grid, and when switching pages when AJAX-bound, the vertical scroll is put to the top. I don't know anyone who would want to stay vertically scrolled to the bottom when switching to another grid page.
When using Kendo AJAX-bound grid and switching pages, the vertical scrollbar stays where it was on the previous page. Is this a bug or did you just let that be something we have to do ourselves?

Hi, Dev Team!
I use Cards with "k-card-deck" class. How i can do stretched link in every "k-card" inside "k-card-deck"?
need something like that:
<div class="k-card-deck">
<div class="k-card">
</div>
<div class="k-card"></div>
</div>
