Declined
Last Updated: 16 Jun 2021 13:44 by ADMIN
Sander
Created on: 12 Oct 2017 20:54
Category: Grid
Type: Feature Request
1
When editing a row
When editing a row focus on the clicked column/cell directly instead of always focus on the first column. When the grid has many columns this gives unwanted user experience because of the automatic horizontal scrolling. With the new cellClick event the clicked column index is already available.
2 comments
ADMIN
Martin
Posted on: 16 Jun 2021 13:44

We are declining this request due to low interest and demand.

Regards,
Martin
Progress Telerik

Love the Telerik and Kendo UI products and believe more people should try them? Invite a fellow developer to become a Progress customer and each of you can get a $50 Amazon gift voucher.

Sander
Posted on: 12 Oct 2017 20:56
By looking at the source code I have created a dirty workaround for this:

            const instance = this.grid.columnList.filter(item => !(item as any).isColumnGroup && !item.hidden)[columnIndex];
            sender.editService.editRow(rowIndex, this._formGroupRow);
            sender.editService.column = instance;
            sender.focusEditElement('.k-grid-edit-cell');
            setTimeout(() => {
                const activeElement = this.elementRef.nativeElement.ownerDocument.activeElement;
                sender.editService.column = null;
                if (activeElement) activeElement.focus();
            });