Hi,
I am using Kendo UI for jQuery in my ASP .Net 6 application. would like to check if it is possible to hide the red box area in the attached image, and the area to be shown only when user select a row in grid
Hello,
What should I write to get the value inside the cell? I run in angular, I want to assign the cell value I selected to the variable.
@ViewChild('spreadsheet') spreadsheetEl!: ElementRef; constructor(private hostEl: ElementRef) {} ngAfterViewInit() { kendo.jQuery(this.spreadsheetEl.nativeElement).kendoSpreadsheet({ columns: 3, //rows: 10, sheetsbar: false, toolbar: { home: [ "open", "exportAs", { type: "button", text: "Material select", showText: "both", icon: "k-icon k-i-cog", click: function(e: any) { var sheet = this.spreadsheetEl.nativeElement.activeSheet(); var range = sheet.selection(); } } ], insert: false, data: false, }, ...
thank you
regards
$("#dropdowntree").kendoDropDownTree({
dataSource: {
type: "aspnetmvc-ajax",
transport: {
read: { url: "xxxxxxxxxxxxxxxxxxxxxxxxxxx" , data: forgeryToken, dataType: "json" }
}}
thank you
Hi,
Demo is http://dojo.telerik.com/UgELisOy
In above demo,
var remoteValidator = {
valid: false,
initiated: false,
check: function(element, validator) {
remoteValidator.initiated = true;
//simulate Ajax
setTimeout(function() {
//TODO: set to true if valid
remoteValidator.valid = true;
validator.validateInput(element);
remoteValidator.initiated = false;
}, 1000);
}
};
The form cannot be submitted normally.
Thank you for your help!
Hi,
Is it possible to make date(month/day) is vertical and time(hour:minute) is horizontal in the "week" view of scheduler?
Thank you for your help!
Hello,
When locked columns and multi-column headers are configured in a grid and selectable: "multiple cell" is configured, we observed
Example : https://dojo.telerik.com/@shashi.kumar/IdeKUHam
What is the behavior of shift + selection on grid? Is there any documentation for the same?
Is there any way we can disable shift + selection for the grid? (ctrl selection & mouse selection should work)
Thanks
Hello,
1. How to put validation in spreadsheet when i'm getting data dynamically their are data coming key value pair.So how to validate every column based on requirement.Please help me to solve this problem. Thanks