dynamic colspan mix object with string, numbers, date string in c# javascript

the issue is in bottom and Top performance columns are dynamic, i need to set colspan by dynamic no of columns, i select 1 to no of months of period (mm-yyyy) in 2023 or other year. abc to region static or fixed columns. please check dummy snippet.
my Requirement is

  • colspan dymanic
  • Bottom Performancebackground red
  • Top Performancebackground green
  • 01-2023 (mm-yyyy) format to Jan-2023
  • 01-20231 remove last 1 and make Jan-2023 – from all columns remove 1

i have Json data like,

Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
<code>var ReportResult = [
{
"01-2023": "100", "02-2023" : "100", "01-20231" : "100", "02-20231" : "100", "03-2023" : "100", "03-20231" : "100", "abc" : "ALL", "abc_max" : "ALL", "xyz" : "ALL", "xyz_max" : "ALL"
}
]
</code>
<code>var ReportResult = [ { "01-2023": "100", "02-2023" : "100", "01-20231" : "100", "02-20231" : "100", "03-2023" : "100", "03-20231" : "100", "abc" : "ALL", "abc_max" : "ALL", "xyz" : "ALL", "xyz_max" : "ALL" } ] </code>
var ReportResult = [
{
    "01-2023": "100", "02-2023" : "100", "01-20231" : "100", "02-20231" : "100", "03-2023" : "100", "03-20231" : "100", "abc" : "ALL", "abc_max" : "ALL", "xyz" : "ALL", "xyz_max" : "ALL"
}
]

and my code is:

Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
<code> var selector = document.getElementById("customTable");
var columns = addAllColumnHeaders(ReportResult, selector);
for (var i = 0; i < ReportResult.length; i++) {
var row$ = $('<tr/>');
for (var colIndex = 0; colIndex < columns.length; colIndex++) {
var cellValue = ReportResult[i][columns[colIndex]];
if (cellValue == null) cellValue = "";
row$.append($('<td style="padding: 8px; border-left: 1px solid #ededed; border-bottom: 1px solid #ededed; " />').html(cellValue));
}
$(selector).append(row$);
}
function addAllColumnHeaders(ReportResult, selector) {
var columnSet = [];
var headerTr$ = $('<tr/>');
var Topheader$ = $('<tr />');
Topheader$.append($('<th colspan="4" />'));
Topheader$.append($('<th class="Bottom_performer" style="padding: 8px; border-left: 1px solid #ededed; border-bottom: 1px solid #ededed;" />').html("Bottom Performance"));
Topheader$.append($('<th class="Bottom_performer" style="padding: 8px; border-left: 1px solid #ededed; border-bottom: 1px solid #ededed;" />').html("Top Performance"));
for (var i = 0; i < ReportResult.length; i++) {
var rowHash = ReportResult[i];
for (var key in rowHash) {
if ($.inArray(key, columnSet) == -1) {
columnSet.push(key);
headerTr$.append($('<th style="padding: 8px; border-left: 1px solid #ededed; border-bottom: 1px solid #ededed;" />').html(key));
}
}
}
$(selector).append(Topheader$);
$(selector).append(headerTr$);
return columnSet;
}
</code>
<code> var selector = document.getElementById("customTable"); var columns = addAllColumnHeaders(ReportResult, selector); for (var i = 0; i < ReportResult.length; i++) { var row$ = $('<tr/>'); for (var colIndex = 0; colIndex < columns.length; colIndex++) { var cellValue = ReportResult[i][columns[colIndex]]; if (cellValue == null) cellValue = ""; row$.append($('<td style="padding: 8px; border-left: 1px solid #ededed; border-bottom: 1px solid #ededed; " />').html(cellValue)); } $(selector).append(row$); } function addAllColumnHeaders(ReportResult, selector) { var columnSet = []; var headerTr$ = $('<tr/>'); var Topheader$ = $('<tr />'); Topheader$.append($('<th colspan="4" />')); Topheader$.append($('<th class="Bottom_performer" style="padding: 8px; border-left: 1px solid #ededed; border-bottom: 1px solid #ededed;" />').html("Bottom Performance")); Topheader$.append($('<th class="Bottom_performer" style="padding: 8px; border-left: 1px solid #ededed; border-bottom: 1px solid #ededed;" />').html("Top Performance")); for (var i = 0; i < ReportResult.length; i++) { var rowHash = ReportResult[i]; for (var key in rowHash) { if ($.inArray(key, columnSet) == -1) { columnSet.push(key); headerTr$.append($('<th style="padding: 8px; border-left: 1px solid #ededed; border-bottom: 1px solid #ededed;" />').html(key)); } } } $(selector).append(Topheader$); $(selector).append(headerTr$); return columnSet; } </code>
  var selector = document.getElementById("customTable");
    var columns = addAllColumnHeaders(ReportResult, selector);

    for (var i = 0; i < ReportResult.length; i++) {
        var row$ = $('<tr/>');
        for (var colIndex = 0; colIndex < columns.length; colIndex++) {
            var cellValue = ReportResult[i][columns[colIndex]];
            if (cellValue == null) cellValue = "";
            row$.append($('<td style="padding: 8px; border-left: 1px solid #ededed; border-bottom: 1px solid #ededed; " />').html(cellValue));
        }
        $(selector).append(row$);
    }
    function addAllColumnHeaders(ReportResult, selector) {
        var columnSet = [];
        var headerTr$ = $('<tr/>');

        var Topheader$ = $('<tr />');
        Topheader$.append($('<th colspan="4" />'));
        Topheader$.append($('<th class="Bottom_performer" style="padding: 8px; border-left: 1px solid #ededed; border-bottom: 1px solid #ededed;" />').html("Bottom Performance"));
    Topheader$.append($('<th class="Bottom_performer" style="padding: 8px; border-left: 1px solid #ededed; border-bottom: 1px solid #ededed;" />').html("Top Performance"));
        for (var i = 0; i < ReportResult.length; i++) {
            var rowHash = ReportResult[i];
            for (var key in rowHash) {
                if ($.inArray(key, columnSet) == -1) {
                   
                        columnSet.push(key);   
                        headerTr$.append($('<th style="padding: 8px; border-left: 1px solid #ededed; border-bottom: 1px solid #ededed;" />').html(key));
                    
                }
            }
        }
        $(selector).append(Topheader$);
        $(selector).append(headerTr$);

        return columnSet;
       }

Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
<code>.Bottom_performer{
background:red;}
.Top_performer{
background:green;
}</code>
<code>.Bottom_performer{ background:red;} .Top_performer{ background:green; }</code>
.Bottom_performer{
    background:red;}
    .Top_performer{
    background:green;
    }
Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
<code> <table>
<tr>
<th colspan="4"></th>
<th colspan="3" class="Bottom_performer" style="padding: 8px; border-left: 1px solid #ededed; border-bottom: 1px solid #ededed;">Bottom Performance</th>
<th colspan="3" class="Top_performer" style="padding: 8px; border-left: 1px solid #ededed; border-bottom: 1px solid #ededed;">Top Performance</th>
</tr>
<tr>
<th style="padding: 8px; border-left: 1px solid #ededed; border-bottom: 1px solid #ededed;">abc</th>
<th style="padding: 8px; border-left: 1px solid #ededed; border-bottom: 1px solid #ededed;">xyz</th>
<th style="padding: 8px; border-left: 1px solid #ededed; border-bottom: 1px solid #ededed;">ProFamily</th>
<th style="padding: 8px; border-left: 1px solid #ededed; border-bottom: 1px solid #ededed;">Region</th>
<th style="padding: 8px; border-left: 1px solid #ededed; border-bottom: 1px solid #ededed;">01-2023</th>
<th style="padding: 8px; border-left: 1px solid #ededed; border-bottom: 1px solid #ededed;">02-2023</th>
<th style="padding: 8px; border-left: 1px solid #ededed; border-bottom: 1px solid #ededed;"> no of columns</th>
<th style="padding: 8px; border-left: 1px solid #ededed; border-bottom: 1px solid #ededed;">01-20231</th>
<th style="padding: 8px; border-left: 1px solid #ededed; border-bottom: 1px solid #ededed;">02-20231</th>
<th style="padding: 8px; border-left: 1px solid #ededed; border-bottom: 1px solid #ededed;">no of columns</th>
</tr>
<tr>
</tr>
<tr>
<td style="padding: 8px; border-left: 1px solid #ededed; border-bottom: 1px solid #ededed; ">ALL</td>
<td style="padding: 8px; border-left: 1px solid #ededed; border-bottom: 1px solid #ededed; ">ALL</td>
<td style="padding: 8px; border-left: 1px solid #ededed; border-bottom: 1px solid #ededed; ">ALL</td>
<td style="padding: 8px; border-left: 1px solid #ededed; border-bottom: 1px solid #ededed; ">ALL</td>
<td style="padding: 8px; border-left: 1px solid #ededed; border-bottom: 1px solid #ededed; ">100</td>
<td style="padding: 8px; border-left: 1px solid #ededed; border-bottom: 1px solid #ededed; ">100</td>
<td style="padding: 8px; border-left: 1px solid #ededed; border-bottom: 1px solid #ededed; ">no of data</td>
<td style="padding: 8px; border-left: 1px solid #ededed; border-bottom: 1px solid #ededed; ">100</td>
<td style="padding: 8px; border-left: 1px solid #ededed; border-bottom: 1px solid #ededed; ">100</td>
<td style="padding: 8px; border-left: 1px solid #ededed; border-bottom: 1px solid #ededed; ">no of data</td>
</tr>
</table></code>
<code> <table> <tr> <th colspan="4"></th> <th colspan="3" class="Bottom_performer" style="padding: 8px; border-left: 1px solid #ededed; border-bottom: 1px solid #ededed;">Bottom Performance</th> <th colspan="3" class="Top_performer" style="padding: 8px; border-left: 1px solid #ededed; border-bottom: 1px solid #ededed;">Top Performance</th> </tr> <tr> <th style="padding: 8px; border-left: 1px solid #ededed; border-bottom: 1px solid #ededed;">abc</th> <th style="padding: 8px; border-left: 1px solid #ededed; border-bottom: 1px solid #ededed;">xyz</th> <th style="padding: 8px; border-left: 1px solid #ededed; border-bottom: 1px solid #ededed;">ProFamily</th> <th style="padding: 8px; border-left: 1px solid #ededed; border-bottom: 1px solid #ededed;">Region</th> <th style="padding: 8px; border-left: 1px solid #ededed; border-bottom: 1px solid #ededed;">01-2023</th> <th style="padding: 8px; border-left: 1px solid #ededed; border-bottom: 1px solid #ededed;">02-2023</th> <th style="padding: 8px; border-left: 1px solid #ededed; border-bottom: 1px solid #ededed;"> no of columns</th> <th style="padding: 8px; border-left: 1px solid #ededed; border-bottom: 1px solid #ededed;">01-20231</th> <th style="padding: 8px; border-left: 1px solid #ededed; border-bottom: 1px solid #ededed;">02-20231</th> <th style="padding: 8px; border-left: 1px solid #ededed; border-bottom: 1px solid #ededed;">no of columns</th> </tr> <tr> </tr> <tr> <td style="padding: 8px; border-left: 1px solid #ededed; border-bottom: 1px solid #ededed; ">ALL</td> <td style="padding: 8px; border-left: 1px solid #ededed; border-bottom: 1px solid #ededed; ">ALL</td> <td style="padding: 8px; border-left: 1px solid #ededed; border-bottom: 1px solid #ededed; ">ALL</td> <td style="padding: 8px; border-left: 1px solid #ededed; border-bottom: 1px solid #ededed; ">ALL</td> <td style="padding: 8px; border-left: 1px solid #ededed; border-bottom: 1px solid #ededed; ">100</td> <td style="padding: 8px; border-left: 1px solid #ededed; border-bottom: 1px solid #ededed; ">100</td> <td style="padding: 8px; border-left: 1px solid #ededed; border-bottom: 1px solid #ededed; ">no of data</td> <td style="padding: 8px; border-left: 1px solid #ededed; border-bottom: 1px solid #ededed; ">100</td> <td style="padding: 8px; border-left: 1px solid #ededed; border-bottom: 1px solid #ededed; ">100</td> <td style="padding: 8px; border-left: 1px solid #ededed; border-bottom: 1px solid #ededed; ">no of data</td> </tr> </table></code>
    <table>
      <tr>
        <th colspan="4"></th>
        <th colspan="3" class="Bottom_performer" style="padding: 8px; border-left: 1px solid #ededed; border-bottom: 1px solid #ededed;">Bottom Performance</th>
        <th colspan="3" class="Top_performer" style="padding: 8px; border-left: 1px solid #ededed; border-bottom: 1px solid #ededed;">Top Performance</th>
      </tr>
      <tr>
        <th style="padding: 8px; border-left: 1px solid #ededed; border-bottom: 1px solid #ededed;">abc</th>
        <th style="padding: 8px; border-left: 1px solid #ededed; border-bottom: 1px solid #ededed;">xyz</th>
        <th style="padding: 8px; border-left: 1px solid #ededed; border-bottom: 1px solid #ededed;">ProFamily</th>
        <th style="padding: 8px; border-left: 1px solid #ededed; border-bottom: 1px solid #ededed;">Region</th>
        <th style="padding: 8px; border-left: 1px solid #ededed; border-bottom: 1px solid #ededed;">01-2023</th>
        <th style="padding: 8px; border-left: 1px solid #ededed; border-bottom: 1px solid #ededed;">02-2023</th>
<th style="padding: 8px; border-left: 1px solid #ededed; border-bottom: 1px solid #ededed;"> no of columns</th>
        <th style="padding: 8px; border-left: 1px solid #ededed; border-bottom: 1px solid #ededed;">01-20231</th>
        <th style="padding: 8px; border-left: 1px solid #ededed; border-bottom: 1px solid #ededed;">02-20231</th>
<th style="padding: 8px; border-left: 1px solid #ededed; border-bottom: 1px solid #ededed;">no of columns</th>
      </tr>
      <tr>
      </tr>
      <tr>
        <td style="padding: 8px; border-left: 1px solid #ededed; border-bottom: 1px solid #ededed; ">ALL</td>
        <td style="padding: 8px; border-left: 1px solid #ededed; border-bottom: 1px solid #ededed; ">ALL</td>
        <td style="padding: 8px; border-left: 1px solid #ededed; border-bottom: 1px solid #ededed; ">ALL</td>
        <td style="padding: 8px; border-left: 1px solid #ededed; border-bottom: 1px solid #ededed; ">ALL</td>
        <td style="padding: 8px; border-left: 1px solid #ededed; border-bottom: 1px solid #ededed; ">100</td>
        <td style="padding: 8px; border-left: 1px solid #ededed; border-bottom: 1px solid #ededed; ">100</td>
<td style="padding: 8px; border-left: 1px solid #ededed; border-bottom: 1px solid #ededed; ">no of data</td>
        <td style="padding: 8px; border-left: 1px solid #ededed; border-bottom: 1px solid #ededed; ">100</td>
        <td style="padding: 8px; border-left: 1px solid #ededed; border-bottom: 1px solid #ededed; ">100</td>
        <td style="padding: 8px; border-left: 1px solid #ededed; border-bottom: 1px solid #ededed; ">no of data</td>
      </tr>
    </table>

Thanks in Advance, anybody please help me. I try with lots of time.

Trang chủ Giới thiệu Sinh nhật bé trai Sinh nhật bé gái Tổ chức sự kiện Biểu diễn giải trí Dịch vụ khác Trang trí tiệc cưới Tổ chức khai trương Tư vấn dịch vụ Thư viện ảnh Tin tức - sự kiện Liên hệ Chú hề sinh nhật Trang trí YEAR END PARTY công ty Trang trí tất niên cuối năm Trang trí tất niên xu hướng mới nhất Trang trí sinh nhật bé trai Hải Đăng Trang trí sinh nhật bé Khánh Vân Trang trí sinh nhật Bích Ngân Trang trí sinh nhật bé Thanh Trang Thuê ông già Noel phát quà Biểu diễn xiếc khỉ Xiếc quay đĩa Dịch vụ tổ chức sự kiện 5 sao Thông tin về chúng tôi Dịch vụ sinh nhật bé trai Dịch vụ sinh nhật bé gái Sự kiện trọn gói Các tiết mục giải trí Dịch vụ bổ trợ Tiệc cưới sang trọng Dịch vụ khai trương Tư vấn tổ chức sự kiện Hình ảnh sự kiện Cập nhật tin tức Liên hệ ngay Thuê chú hề chuyên nghiệp Tiệc tất niên cho công ty Trang trí tiệc cuối năm Tiệc tất niên độc đáo Sinh nhật bé Hải Đăng Sinh nhật đáng yêu bé Khánh Vân Sinh nhật sang trọng Bích Ngân Tiệc sinh nhật bé Thanh Trang Dịch vụ ông già Noel Xiếc thú vui nhộn Biểu diễn xiếc quay đĩa Dịch vụ tổ chức tiệc uy tín Khám phá dịch vụ của chúng tôi Tiệc sinh nhật cho bé trai Trang trí tiệc cho bé gái Gói sự kiện chuyên nghiệp Chương trình giải trí hấp dẫn Dịch vụ hỗ trợ sự kiện Trang trí tiệc cưới đẹp Khởi đầu thành công với khai trương Chuyên gia tư vấn sự kiện Xem ảnh các sự kiện đẹp Tin mới về sự kiện Kết nối với đội ngũ chuyên gia Chú hề vui nhộn cho tiệc sinh nhật Ý tưởng tiệc cuối năm Tất niên độc đáo Trang trí tiệc hiện đại Tổ chức sinh nhật cho Hải Đăng Sinh nhật độc quyền Khánh Vân Phong cách tiệc Bích Ngân Trang trí tiệc bé Thanh Trang Thuê dịch vụ ông già Noel chuyên nghiệp Xem xiếc khỉ đặc sắc Xiếc quay đĩa thú vị
Trang chủ Giới thiệu Sinh nhật bé trai Sinh nhật bé gái Tổ chức sự kiện Biểu diễn giải trí Dịch vụ khác Trang trí tiệc cưới Tổ chức khai trương Tư vấn dịch vụ Thư viện ảnh Tin tức - sự kiện Liên hệ Chú hề sinh nhật Trang trí YEAR END PARTY công ty Trang trí tất niên cuối năm Trang trí tất niên xu hướng mới nhất Trang trí sinh nhật bé trai Hải Đăng Trang trí sinh nhật bé Khánh Vân Trang trí sinh nhật Bích Ngân Trang trí sinh nhật bé Thanh Trang Thuê ông già Noel phát quà Biểu diễn xiếc khỉ Xiếc quay đĩa
Thiết kế website Thiết kế website Thiết kế website Cách kháng tài khoản quảng cáo Mua bán Fanpage Facebook Dịch vụ SEO Tổ chức sinh nhật