The kendo template function injects the literal " value into the DOM instead of " when the html encoding template format is used. For example:
var template = kendo.template("<div id='box'>#= firstName #</div>");
var data = { firstName: "<b>Todd'\" & " " " </b>" };
results in the following value being inserted into the DOM:
<b>Todd'" & " " " </b>
Why are the 3 html entity representations of double quotes translated back to the double quote literal? Is there a way to avoid this? If not, what other html entities behave this way?
http://jsfiddle.net/6fcz2e9j/1/
A recent change - probably from here - https://github.com/telerik/kendo-ui-core/issues/1650
Means that all our input boxes now come with what is, for us, an ugly and inappropriate clear button.
Seems especially odd to make it appear on a DropDownList - since all our values are readonly.
Can you advise the best way to remove this feature?
Project wide would be nice.
Hello
I have some page with a Kendo Ui for JQuery Multicolumnbobox.
At on one page there are around 20 MilticolumnComboboxes and only one large data (around 10000 rows) others have around 5-200 rows ( load data via .json array files)
It takes very long time(maybe 7-15 sec) for the page to load already.
If I off all the Multicolumncomboboxes the page renders fast.
Are there ways to increase the performance with the Jquery Ui MulticolumnComboBoxes?
Thank you
I'm trying to implement validation on he form , but having issues with radio button.
<div class="form-group row">
@Html.LabelFor(model => model.LanguageID, htmlAttributes: new { @class = "control-label col-md-2 required" })
<div class="col-md-10">
@(Html.Kendo().ComboBoxFor(m => m.LanguageID)
.Name("LanguageID")
.Placeholder(@Resources.Resources.LanguagePlaceholder)
.DataTextField("Description")
.DataValueField("Id")
.Filter("contains")
.Suggest(true)
.DataSource(s => s.Read(r => r.Action("GetLanguages", "Student")).ServerFiltering(false))
.HtmlAttributes(new { style = "width:300px" })
)
@Html.ValidationMessageFor(model => model.LanguageID, "", new { @class = "text-danger" })
</div>
</div>
<div class="form-group row">
@Html.LabelFor(model => model.WebsiteDisplay, htmlAttributes: new { @class = "control-label col-md-2 required" })
<div class="form-group k-radio-list">
<div class="checkbox">
@(Html.Kendo().RadioButtonFor(m => m.WebsiteDisplay).Label(@Resources.Resources.Yes).Value(true))
@(Html.Kendo().RadioButtonFor(m => m.WebsiteDisplay).Label(@Resources.Resources.No).Value(false))
@Html.ValidationMessageFor(model => model.WebsiteDisplay, "", new { @class = "text-danger" })
</div>
</div>
</div>
<script>
$(function () {
$("form").kendoValidator();
});
</script>
it does work for combobox and textboxes , but error is not displayed for radio button.
Am I missing something?
Dear progress folks,
we use in our product the ignore property of the kendo.ui.Draggable (kendo version 2020.2.617) method. This works fine on Safari with an iPad and a OS version 14.7.1. But the problem here is that we have some Click Events on some interactive elements which also gets ignored. The behaviour in such situations should be that the dragging gets ignored and the Click Events should still work.
The interesting fact about this is that the problem doesn't appear on Safari at an iPad with an OS version 12.5.4.
Hi,
I am working on an already existing kendo grid that gets the data from the server.
The grid has filters enabled and I can see the calls being made (under Chrome developer tools -> network) when i filter the data.
However, the calls being made are of the GET type (with the filter data on the URL), is there a way to change the request method from GET to POST?
Currently I can see the call being made as this when i apply the filter "Side = sell":
http://mywebsite.com/get_orders/account-1?take=150&skip=0&page=1&pageSize=150&filter%5Blogic%5D=and&filter%5Bfilters%5D%5B0%5D%5Bfield%5D=SIDE&filter%5Bfilters%5D%5B0%5D%5Boperator%5D=contains&filter%5Bfilters%5D%5B0%5D%5Bvalue%5D=sell
thanks
Hi Team,
I have requirement where we have to show all events in timelineweek view in single view without adding scroll to the page as per attached screenshot.Can you please how we can achieve this compress view in Kendo Scheduler?
Hi,
I'm using the data- attribute setup for a date time picker, and I can't seem to get component type (I'm looking for modern) to work. Might anybody know the correct attribute name?
<input name="start" required="required" style="z-index: inherit;" type="datetime"
data-bind="value:start,invisible:isAllDay"
data-format="M/d/yyyy h:mm tt"
data-component-type="modern"
data-role="datetimepicker" />
I have an autocomplete that users may type in long queries into - the problem is that when they type in long queries the ends of the suggestions are cut of with an ellipsis
We want to keep it a single line, but we want the ellipsis to be on the left of the suggestion so the user can see the end of the autocomplete suggestion instead
See attached
Does anyone know of an easy way to do this? I've tried applying text-align:right and various right based attributes to the autocomplete structure but so far it hasn't worked...