Completed
Last Updated: 30 Aug 2024 13:14 by ADMIN
Release 2024 Q4 (Nov)
Daniel
Created on: 15 Aug 2024 13:27
Category: Grid
Type: Bug Report
0
Groups cannot be expanded with group paging enabled and k-rtl class added on a container element

Reproduction steps: 

Try to expand a group in this dojo:

Workaround: 

Appending the following script right after loading the kendo scripts:

  • https://dojo.telerik.com/aroxoYeB/6 
  • kendo.ui.Grid.original_groupable = kendo.ui.Grid.prototype._groupable;
    kendo.ui.Grid.prototype._groupable = function() {
        let that = this;
        kendo.ui.Grid.original_groupable.call(that);
        if (!kendo.support.isRtl(that.element)) {
            return;
        }
    
        if (that._isLocked()) {
            that.lockedTable.on("click.kendoGrid", ".k-grouping-row " + "a[class*='-i-caret-alt-right']", that._groupableClickHandler);
        } else {
            that.table.on("click.kendoGrid", ".k-grouping-row " + "a[class*='-i-caret-alt-right']", that._groupableClickHandler);
        }
    }
0 comments