Hello,
I'm currently trying to export an excel file from a grid with a custom filename. Everywhere I look the go-to suggestion is to use the
ExcelExportEvent
and
e.workbook.fileName
to update the file name. This doesn't appear to work anymore. Looking into the source code I found the following lines trying to save a file:
saveFile(options) {
toDataURL(options).then((dataURL) => {
saveAs(dataURL,
this
.fileName, {
forceProxy:
this
.forceProxy,
proxyURL:
this
.proxyURL
});
});
}
This clearly indicates that this.fileName is used, which is initialized once to "Export.xlsx" and then never read back from the event again.
Is this intended behaviour? If so, has the ability to override the export name completely been removed?
Best Regards
Philipp
Hello,
I need an on close event of each tab in a tabstrip component in Angular typescript.
How can we achieve that please ??
Thanks
Hello,
After doing Group By on a grid. I'd like to expand/collapse a group in a Grid by clicking the entire row of the group header, not just the litte arrow on the left.
Currently, if we click on little group by arrow on the left side it will expand/collapse the group. Instead, need to expand/collapse by clicking the entire row of the group header.
I have attached a screenshot for better clarification.
Any help would be appreciated. Thanks in advance.
I am creating unit tests using jest and I can't run the test because of Angular not like "on" inside the [onLabel] attribute in kendo-switch. Is there a work around for this?
Template parse errors:
Binding to event property 'onLabel' is disallowed for security reasons, please use (Label)=...
If 'onLabel' is a directive input, make sure the directive is imported by the current module. ("
(valueChange)="switchPageSize($event)"
[offLabel]="'All'"
[ERROR ->][onLabel]="'All'">
</kendo-switch>
</ng-template>
"): ng:///DynamicTestModule/HistoryComponent.html@199:10
I don't see anything in the docs but it seems like a standard thing to have.
What I'm looking for - the user will perform an action on a node in my TreeView which will result in a call to a remote API that can (sometimes) take several seconds. I'd like to disable the TreeView or set it to loading so that the user knows there is some activity and to also prevent interaction with the TreeView.
What's the Kendo way to do this? I can overlay a "busy" div but I'd like it to be visually close to the Grid loading appearance.
Good Day,
I am using Telerik controls in my project (abp.io with Angular UI v 3.2.1), I want to integrate grid control with server databinding (server side paging, sorting, searching etc). I tried to get data using swagger, but it isn't working.
Is there any working example for this?
Thanks.