C
|
cristi 5/4/2024 |
in the JS onload event of the detail table list page you put this code: function MergeGridCells(TableID,rCols) { For example if you want to merge column 3 rows - as is your case: MergeGridCells('table_id',[3]); The table id you get it from web developer tools.
From the ss above you use it like this: MergeGridCells('form_grid_1',[3]); You can also merge multiple columns rows with identical values - maybe you have multiple group by: MergeGridCells('table_id',[3,4,5, whatever]); If you want the identical values alligned in the middle of the cells you put this in the element cell custom css: :host { |
P
|
PK author 5/4/2024 |
cristi, your solution is brilliant. Thank you!!
|
C
|
cristi 5/5/2024 |
P
|
PK author 5/5/2024 |
Thank you so much cristi. I will give it a shot |
P
|
PK author 5/19/2024 |
@cristi, I just realized however that this code does not work with views only tables. Thanks agian |
fhumanes 5/20/2024 | |
Hello, My solution works both in tables and views (database or phprunner). Greetings, |
P
|
PK author 5/21/2024 |
Hi Fernando, Thanks Percy |
P
|
PK author 5/21/2024 |
OK. This is solved. |
C
|
cristi 5/22/2024 |
Glad that you solved. |
P
|
PK author 5/22/2024 |
Thanks cristi, Thanks again Percy |