Sir/Madam,
I am sumant.ch working as UI Developer.I would like to discuss issue related to horizontal scroll bar in kendo angular grid which is when I click horizontal scroll bar button which is present at the left side or right side the scroll bar then scroll bar should move from one column to another column present in kendo angular grid.So,please check this issue and revert to me as soon as possible.


Good day!
I discovered a typo in the "Custom Values" documentation for the ComboBox. On the page, under the Remote Services section, for the source of app.component.ts, there is a section of code:
/* Maps each custom text that the user types to the result of a function that performs http request to remove service. For further details about `switchMap` operator check: http://reactivex.io/rxjs/class/es6/Observable.js~Observable.html#instance-method-switchMap*/public valueNormalizer = (text: Observable<string>): any => text.pipe(switchMap(this.service));
On the comment line it states "...performs http request to remove service." I imagine you wanted that to be "....remote service.".
Peace,
Keith Nicholson
This might have been answered before.
I need to open a modal window on row click, but here's the catch:
There are two ways I think this might work but the two ways need a workaround.
1st: using the selectionChange event, the problem is that the row stays selected and when I close the modal and would like to select it again it wont let me, I have to select a different row to trigger the event.
2nd: cellClick event, it works fine, but I have a column at the end of the row with button actions for delete, etc... so if I click on any of those buttons the cellClick event also gets fired and I end up with two actions.
What would be a clean way to trigger a row click without it being selected and open a modal window, and when clicking on any button on a row cell it doesn't trigger the row click event either.
Thanks.
Hello,
I have a kendo-grid-checkbox-column that needs a Select-All checkbox in the header. I could use the showSelectAll option but the header also needs to have text in the cell. To accomplish this I use kendoGridHeaderTemplate. I am able to do this just fine, but I am unable to figure out how to set the checkbox to indeterminate. I created an "isChecked" variable to set the checkbox to checked or unchecked. Is there a value I can set to show the indeterminate state? Here is my code:
<kendo-grid-checkbox-column>
<ng-template kendoGridHeaderTemplate>
<div style="margin-bottom: -8px; margin-left: 5px;">
<input class="k-checkbox" id="chkHeader" type="checkbox" [(ngModel)]="isChecked">
<label class="k-checkbox-label" for="chkHeader"></label>
</div>
<div style="margin-left: -4px;">{{myCustomText}}</div>
</ng-template>
</kendo-grid-checkbox-column>
Thanks,
Scott

https://www.telerik.com/kendo-angular-ui/components/grid/scroll-modes/virtual/
(Required) rowHeight—Has to represent the actual height of each Grid row (tr) element in the DOM. The provided rowHeight number is used for internal calculations and does not set the row height of the Grid.
This rowHeight seems to be some kind of magic number used for internal calculations. How do I know the value to set it to?