Hello,
I need use export excel With ProxyURL
i got error when I click on the button export to excel
thanks

I need to display a table for the autocomplete (like the multicombobox).
I have already done this on a previous version of telerik with the code:
.HeaderTemplate("<div class=\"k-grid-header\" style=\"padding-right: 17px;\">" +
"<div class=\"k-grid-header-wrap\">" +
"<table>" +
"<colgroup>" +
"<col>" +
"<col>" +
"<col>" +
"<col>" +
"</colgroup>" +
"<tbody>" +
"<tr>" +
"<th class=\"k-header\">P1</th>" +
"<th class=\"k-header\">P2</th>" +
"<th class=\"k-header\">P3</th>" +
"<th class=\"k-header\">P4</th>" +
"</tr>" +
"</tbody>" +
"</table>" +
"</div>" +
"</div>")
.Template("<span class=\"k-cell\">#: data.P1#</span>" +
"<span class=\"k-cell\">#: data.P2#</span>" +
"<span class=\"k-cell\">#: data.P3#</span>" +
"<span class=\"k-cell\">#: data.P4#</span>")

Grid :-
.Columns(columns =>
{
columns.Bound(x => x.Role).Title("<b>Project OBS Role</b>").Width("30%").Filterable(true).
HeaderHtmlAttributes(new { style="text-align:center;"}).HeaderHtmlAttributes(new { style = "text-align:center;vertical-align:middle;" });
columns.Bound(x => x.UserId).Title("<b>Approver</b>").Width("40%").EditorTemplateName("GridGroupPeoplePicker").
====> EditorViewData(new { SecurityGroup = "#=SecurityGroup#" }).Filterable(true).HeaderHtmlAttributes(new { style = "text-align:center;vertical- align:middle;" }).HtmlAttributes(new { style = "text-align:left;" });
columns.Bound(x => x.Delay).Title("<b>Delay<b>").Width("20%").Filterable(true).
HeaderHtmlAttributes(new { style = "text-align:center;vertical-align:middle;" }).HtmlAttributes(new { style = "text-align:left;" });
columns.Command(command => { command.Edit().Text(" ").CancelText(" ").UpdateText(" ");}).Width("10%").
HtmlAttributes(new { style = "text-align:center;" });
})
Editor Template :-
@model stringWe have need of a way to show an editor when user clicks on a plain HTML element. There will be more fields than visible when the div goes into edit mode. Same way we use a clientTemplate in our KendoGrids.
I picture,
If no examples exist, it would be nice to hear from moderators on why this couldn't be done. Or, better, how nicely it could work :-)
I've done something like this about 7 years ago and it worked well, but I no longer have access to that code-base.
Bob Graham

Hello,
I want the tooltip to remain open when trying to click on the content of tooltip. Below is my code.
---Grid
@(Html.Kendo().Grid<AgeInformation>()
.Name("AgeInformationGrid")
.Columns(columns =>
{
columns.Bound(p => p.FundAge).Title("Agency").ClientTemplate("#=FundAge.FedAgeDesc#").Sortable(false).Width(175).HeaderHtmlAttributes(new { @class = "FundAgeClass" });
})
.ToolBar(toolbar => toolbar.Create())
.Editable(editable => editable.Mode(GridEditMode.InLine))
.Pageable()
.Sortable()
.Scrollable()
.HtmlAttributes(new { style = "height:500px;" })
.DataSource(dataSource => dataSource
.Ajax()
.AutoSync(false)
.Batch(false)
.PageSize(20)
.ServerOperation(false)
.Events(events => events.Error("errorHandler"))
.Events(events => events.RequestEnd("onAgeInformationRequestEnd"))
.Model(model => {
model.Id(p => p.AgeInformationId);
model.Field(p => p.AgeInformationId).Editable(false);
model.Field(p => p.FundAge).DefaultValue(new FedAgency());
})
.Create(update => update.Action("AddAgeInformation", "Coversheet").Type(HttpVerbs.Post))
.Read(read => read.Action("GetAgeInformation", "Coversheet").Type(HttpVerbs.Get))
.Update(update => update.Action("EditAgeInformation", "Coversheet").Type(HttpVerbs.Post))
.Destroy(update => update.Action("DeleteAgeInformation", "Coversheet").Type(HttpVerbs.Post))
)
//.Events(events => events.Edit("onAgeInformationEdit"))
)
function ToolTipsForAgency() {
$(".FundAgeClass").append(" <i class='far fa-question-circle'></i>");
$(".FundAgeClass").attr("data-html", "true");}
Any help is appreciated
When I tried to export excel, the data format changed.
For example, the data that is seen in the browser looks like this: 01:01:30
However, checking the excel after export, the time shows like this: 3690, which is seconds.
How can I get the same format in the browser and in excel?
Thanks.
{
field: "cn_busy_grp",
title: "통화시간",
columns :[{
field: "ts_busy_times",
title: "총통화시간",
template: '#=convertSecondsToString(ts_busy_times, "hms")#',
footerTemplate: '#=convertSecondsToString(sum, "hms")#',
groupFooterTemplate: '#=convertSecondsToString(sum, "hms")#',
width: "80px"
},Hi,
I'm tryign to dynamically change the tagMode of a kendo.ui.DropDownTree as a user selects more or less items but the control does not refresh/rerender
Below is a sample of the code I have tried...
var ddt = $(id).data('kendoDropDownTree');
var maxSelectedItemsDisplayedInSingleTagMode = 3;
let selectedValues = ddt.value();
let currentTagMode = ddt.options.tagMode;
let newTagMode = currentTagMode;
newTagMode = selectedValues.length <= maxSelectedItemsDisplayedInSingleTagMode ? "multiple" : "single";
if (newTagMode != currentTagMode) {
ddt.value([])
ddt.setOptions({
tagMode: newTagMode
});
ddt.value(selectedValues);
}
Something similar does work for the kendo.ui.MultiSelect but I cannot get it to play ball for kendo.ui.DropDownTree
Thanks

I get content as HTML encoded and would like to render this content as HTML in a grid row column using a template.
template: window.kendo.template($("#title").html())
<script id="title" type="text/x-kendo-template">
<strong>#:title#</strong>
<div>#:content#</div>
</script>
Have tried many (all) combinations of #:content#, #=content#, encoded: false, kendo.htmlEncode...
Please see the screenshot.
What am I doing wrong?
/Morten
Hello ,
I'm using below code for date validation
sheetForNPD.range("O2:O100").validation({
dataType: "date",
showButton: true,
comparerType: "between",
from: "DATEVALUE(\"1/1/1900\")",
to: "DATEVALUE(\"1/1/2050\")",
allowNulls: true,
type: "reject",
titleTemplate: "Start Date validation error",
messageTemplate: "Start Date should be between 1899 and 2050 year."
}).format('MM-dd-yy');
But i need if user enter in these format then also acceptable
Slashes
M/D/YY
M/D/YYYY
MM/DD/YY
MM/DD/YYYY
Dashes
M-D-YY
M-D-YYYY
MM-DD-YY
MM-DD-YYYY
Dots
M.D.YY
M.D.YYYY
MM.DD.YY
MM.DD.YYYY
Is it possible in kendo spreadsheet can i validate these format for single column ?
