我正在尝试基于ngclass表达式设置列的背景色。我已经有一个现有的表达方式。如何添加其他表达式。如果您在下面看到我的代码,那么我正在遍历列名并应用ngclass表达式
<table id="LegalFundClass" class="fundClassesTable table-striped">
<tr *ngFor="let c of LegalFundClasses.LegalFundClassColumnNames">
<ng-container
*ngIf="c !='Hurdle Rate Basis' && c != 'Hurdle Rate %' && c != 'Hurdle Rate Index' || isHurdle;">
<ng-container *ngIf="c !='Clawback %' || isClawback">
<th
[ngClass]="c != 'Space1' && c != 'Space2' && c != 'Space3' && c != 'Buttons' ? 'tableItem bold' : 'tableItem cellbgcolor'">
{{ c }}</th>
我还需要添加以下表达式。我该怎么做
c== 'TERMS' apply class mainheading
答案 0 :(得分:0)
为多种情况添加以下代码
$(".projects-load-btn").on("click", function(e) {
e.preventDefault();
var id = $(this).data("id");
$.ajax({
url: "/ajax/get-projects",
data: { id: id }
}).done(function (data) {
$(".projects").append(data);
});
});