JQuery dataTable의 한 필드 값에 대해 부트 스트랩 레이블을 출력하고 싶습니다. 이 필드의 가능한 값은 '0'또는 '1'일 수 있으며 결과에 따라 dataTable에 출력 할 부트 스트랩 레이블을 결정할 수 있습니다. 불행히도 나는이 사건에 대한 진술을 어떻게 할 수 있는지 모른다.jQuery Datatable 필드 편집
내 JQuery와 :
나는 "활성화"필드의 결과이 같은 것을 사용할 필요가$(document).ready(function() {
$('#accountOverview').dataTable({
"ajax": {
"url": "/database/accounts.php",
"data": {"action": "selectAccounts"},
"dataSrc": ""
},
"columns": [
{ "data": "email" },
{ "data": "platform" },
{ "data": "coins" },
{ "data": "profitDay" },
{ "data": "playerName" },
{ "data": "tradepileCards" },
{ "data": "tradepileValue" },
{ "data": "enabled" }
],
"autoWidth": false
});
});
:
if(enabled==1) <label class="label label-success">Online</label>
else <label class="label label-error">Offline</label>
HTML 테이블 :
<table id="accountOverview" class="table datatable">
<thead>
<tr>
<th>E-Mail</th>
<th>Platform</th>
<th>Coins</th>
<th>Profit last 24h</th>
<th>Playername</th>
<th>Tradepile Cards</th>
<th>Tradepile Value</th>
<th>Status</th>
</tr>
</thead>
<tbody id="accountList">
<!-- List all accounts -->
</tbody>
</table>
레이블은 "status"필드 = 마지막 각 행에 있어야합니다.
이 어디 라벨 가고 싶어 (그리고 라벨 어떤 입력 요소입니다)? 라벨이 삽입되기 전에'테이블 '은 어떻게 생겼을까요? 그것은 어떻게 보일 것인가? –
내 질문을 편집하고 정보를 추가했습니다. 테이블은 위의 jQuery 파트에서 작성합니다. 마지막으로