Posted 25 December 2019, 5:46 am EST
Hi everyone,
I want to create a multi-row grid, so I use WjMultiRow through properties:
layoutDefinition()
class CellMulti {
constructor(
public binding: string,
public header: string,
public cssClass?: string,
public format?: string,
public isReadOnly?: boolean,
public wordWrap?: boolean,
public width?: number,
public colspan?: number,
public rowspan?: number,
public align?: string,
public dataType?: string,
public dataMap?: DataMap,
public visible?: boolean,
) { }
}
class Line {
constructor(
public cells: CellMulti[],
public header?: string,
public colspan?: number,
public rowspan?: number,
) { }
}
But, My grid just have 2 lines/recor when I want to my header have 3 lines (Please see attached photo)
I have tried many ways but still have not found the answer, please help me if you have any idea
Thanks!