@progress/kendo-angular-grid
Version:
Kendo UI Grid for Angular - high performance data grid with paging, filtering, virtualization, CRUD, and more.
65 lines (64 loc) • 2.63 kB
TypeScript
/**-----------------------------------------------------------------------------------------
* Copyright © 2025 Progress Software Corporation. All rights reserved.
* Licensed under commercial license. See LICENSE.md in the project root for more information
*-------------------------------------------------------------------------------------------*/
import { QueryList, TemplateRef } from '@angular/core';
import { ColumnBase } from './column-base';
import { IdService } from '../common/id.service';
import { SVGIcon } from '@progress/kendo-svg-icons';
import { RowDragHandleTemplateDirective } from '../row-reordering/drag-handle-template.directive';
import { RowDragHintTemplateDirective } from '../row-reordering/drag-hint-template.directive';
import { CellRowspanFn } from './cell-rowspan';
import * as i0 from "@angular/core";
/**
* Represents the drag handle for reordering rows in the Grid. [See example](slug:reordering_rows_grid).
*
* @example
* ```html
* <kendo-grid>
* <kendo-grid-rowreorder-column></kendo-grid-rowreorder-column>
* <kendo-grid-column field="ProductID"></kendo-grid-column>
* </kendo-grid>
* ```
*/
export declare class RowReorderColumnComponent extends ColumnBase {
parent?: ColumnBase;
/**
* Defines the name for an existing font icon in the Kendo UI theme.
* @hidden
*/
dragHandleIcon: string;
/**
* Defines an SVGIcon to be rendered as a drag handle.
* @hidden
*/
dragHandleSVGIcon: SVGIcon;
/**
* @hidden
*/
dragHandleTemplate: QueryList<RowDragHandleTemplateDirective>;
/**
* @hidden
*/
dragHintTemplate: QueryList<RowDragHintTemplateDirective>;
/**
* @hidden
*/
readonly isRowReorderColumn: boolean;
/**
* @hidden
*/
get rowDragHandleTemplateRef(): TemplateRef<any>;
/**
* @hidden
*/
get rowDragHintTemplateRef(): TemplateRef<any>;
constructor(parent?: ColumnBase, idService?: IdService);
/**
* Sets a function to determine the rowspan of each column cell.
*/
set cellRowspan(cellRowspan: CellRowspanFn);
get cellRowspan(): CellRowspanFn;
static ɵfac: i0.ɵɵFactoryDeclaration<RowReorderColumnComponent, [{ optional: true; host: true; skipSelf: true; }, { optional: true; }]>;
static ɵcmp: i0.ɵɵComponentDeclaration<RowReorderColumnComponent, "kendo-grid-rowreorder-column", never, { "dragHandleIcon": { "alias": "dragHandleIcon"; "required": false; }; "dragHandleSVGIcon": { "alias": "dragHandleSVGIcon"; "required": false; }; }, {}, ["dragHandleTemplate", "dragHintTemplate"], never, true, never>;
}