Are locked cells in a imported excel file supported? They don't appear to be.
Also are hidden sheets able to be supported as well?
The following code works when I have one detail grid expanded. If I have multiple grids expanded, it only executes against the first detail grid. I am having trouble figuring out how to determine which grid is selected and execute the below code against that particular detail grid:
if (count === 0) {
_.each($('.tst-k-grid').data("kendoGrid")._data, function (e) {
if (e.Status !== 'E') {
e.Status = 'W';
}
});
} else if (count > 1) {
_.each($('.tst-k-grid').data("kendoGrid")._data, function (e) {
if (e.Status !== 'E') {
e.Status = 'X';
}
});
}Html.Kendo().Chart<AccountPerformance>(Model.Results) .Name("chartPCT") .Title("% Return") .Legend(legend => legend.Visible(false)) .Series(series => series.Column(model => model.Metrics.Return) .Name(Model.ColumnTitle) .Labels(false) ) .ValueAxis(axis => axis.Numeric() .Labels(labels => labels.Format("{0}%"))) .CategoryAxis(axis => axis .Categories(model => model.Observation) .Labels(labels => { labels.Format("MMM"); })) .Render();I'm trying to filter a spreadsheet, and while it works, it is EXTREMELY slow
And this kind of makes sense - we have ~35k unique values in this SKU column - but clicking to add a filter and then clicking the down arrow takes 20+ seconds before the filter popup appears, during which time the whole screen is frozen
Is there a way to allow a filter by value without including this multi-select, as with the data we have, in its current form, its completely unusable.
Thanks
Hi,
There are question as below, I could not provide a code snippet because for editing require an API which are not available as development is in progress
transport: {
read: {
url: crudServiceBaseUrl ,
dataType: "json"
},
create: {
url: crudServiceBaseUrl + "/add",
dataType: "json"
},
update: {
url: crudServiceBaseUrl + "/update",
dataType: "json"
},
destroy: {
url: crudServiceBaseUrl + "/delete",
dataType: "json"
},
parameterMap: function (options, operation) {
if (operation !== "read" && options.models) {
return { models: kendo.stringify(options.models) };
}
}
},{"Project":"e81af126-13cd-40c4-951b-9611fa85f39c","ID":"fc980fda-40c5-4fda-b97d-dfc0aced6a10","Description":"123123","WBSType":1,"SequenceNumber":0,"Parent":null,"BudgetSalesAmountDC":0.0,"BudgetCostsAmountDC":0.0,"Quantity":10.0,"WBSIcon":"","ReportsTo":null,"WBSRunningNumber":0,"hasChildren":false}
Hi ,
I am testing trail version of v2023.1.117 Kendo UI for jquery. I have upgraded jquery version to the latest .
I am trying to implement CSP header in the web pages using meta tag.
<meta http-equiv="Content-Security-Policy" content="default-src 'self' 'sha256-lzhPGNqxpwmBda/ftMrdga7dSTDWPq2rpjz66R6TVFw=' http://localhost:9000/xxxx/js/lib; script-src 'self' 'sha256-lzhPGNqxpwmBda/ftMrdga7dSTDWPq2rpjz66R6TVFw=' http://localhost:9000/xxxx/js/lib; style-src 'self' 'sha256-lzhPGNqxpwmBda/ftMrdga7dSTDWPq2rpjz66R6TVFw=' http://localhost:9000/xxxx/js/lib;">
I am getting an error , i can't use unsafe tag in the CSP. Any thought what am i missing.
Refused to apply inline style because it violates the following Content Security Policy directive: "style-src 'self' 'sha256-lzhPGNqxpwmBda/ftMrdga7dSTDWPq2rpjz66R6TVFw=' http://localhost:9000/recon/js/lib". Either the 'unsafe-inline' keyword, a hash ('sha256-g6wc7vdud1aSmTLcpHjWXR0Wfvqff5mhy00lnnvIu5c='), or a nonce ('nonce-...') is required to enable inline execution. Note that hashes do not apply to event handlers, style attributes and javascript: navigations unless the 'unsafe-hashes' keyword is present.
Xt @ kendo.all.js:313050
t.attachTo @ kendo.all.js:313050
t.load @ kendo.all.js:313050
i.draw @ kendo.all.js:313050
draw @ kendo.all.js:313050
_redraw @ kendo.all.js:313050
(anonymous) @ kendo.all.js:313050
Re.loadFonts @ kendo.all.js:313050
Re.preloadFonts @ kendo.all.js:313050
init @ kendo.all.js:313050
_createChart @ kendo.all.js:313050
_initChart @ kendo.all.js:313050
_initDataSource @ kendo.all.js:313050
init @ kendo.all.js:313050
(anonymous) @ kendo.all.js:313050
each @ jquery-3.6.3.min.js:2
each @ jquery-3.6.3.min.js:2
t.fn.<computed> @ kendo.all.js:313050
e @ jquery-3.6.3.min.js:2
t @ jquery-3.6.3.min.js:2
Thanks in advance
Hi,
in the hierarchical grid, if parent and child both grids have a custom command with same text, and if we click on the custom command on the child it executes the script twice.
https://dojo.telerik.com/eTAJIkuw
it works if we change the text of one of the custom command, but it wont be always so simple and easy to change the text, so can you suggest me a fix for this?
Dear Support
Is it possible to rotate text by 90 degree in spreadsheet ranges. I would like to rotate the text only in some specific ranges. I searched for this solution a lot without success. Any of kendo spreadsheet version does support it? Or is there any other jQuery solution for it?
Thank you!
Best Regards,
Norbert