@syncfusion/ej2-grids
Version:
Feature-rich JavaScript datagrid (datatable) control with built-in support for editing, filtering, grouping, paging, sorting, and exporting to Excel.
23 lines (22 loc) • 528 B
TypeScript
import { IGrid } from '../base/interface';
import { Column } from '../models/column';
/**
* Edit render module is used to render grid edit row.
*
* @hidden
*/
export declare class BatchEditRender {
private parent;
/**
* Constructor for render module
*
* @param {IGrid} parent - specifies the IGrid
*/
constructor(parent?: IGrid);
update(elements: Element[], args: {
columnObject?: Column;
cell?: Element;
row?: Element;
}): void;
private getEditElement;
}