をクリック:剣道グリッド行私は次のコードで剣道グリッドを有する変色
var data = <?php echo $model->over_view; ?>;
var grid = $("#grid").kendoGrid({
dataSource: {
data: data,
pageSize: 10,
sort: { field: "metric", dir: "asc" }
},
dataBound: function() {
$('td').each(function() {
if($(this).text() == 0){
$(this).text('.');
}
if ($(this).text() == 'Bad') {
$(this).addClass('critical')
} else if ($(this).text() == 'Good') {
$(this).addClass('ok')
} else if ($(this).text() == 'Suspect') {
$(this).addClass('warning')
} else if ($(this).text() == 'Idle') {
$(this).addClass('idle')
}
})
},
//rowTemplate: '<tr class="#: classification ==\"Good\" ? "discontinued" : "" #" data-uid="#: uid #"><td>#: classification #</td><td>#: MAC#</td> <td>#: f_Auth #</td><td>#: f_AssoC#</td><td>#: f_EAP #</td><td>#: f_EAPOL #</td><td>#: f_Data #</td><td>#: f_DHCP #</td> <td>#: f_Unk #</td><td>#: metriC#</td></tr>',
sortable: true,
resizable : true,
pageable: true,
toolbar: kendo.template($("#filterDeviceType").html()),
columns: [
{ field: "classification", title: "Device Health",headerAttributes:{ style:"text-align:center"}},
{ field: "display_mac", title: "Devices", width: 150,headerAttributes:{ style:"text-align:center "}, template:"<a target=\"_blank\" href='"+$("#visualize-url").val()+ "?trace_id=" + $("#trace-id").val()+"&mac="+"${MAC}&perspective=${type}'>${display_mac}</a>" },
{ field: "f_Auth", title: "Authentication Failure",headerAttributes:{ style:"text-align:center"} },
{ field: "f_Assoc", title: "Association Failure",headerAttributes:{ style:"text-align:center"}},
{ field: "f_ReAssoc", title: "Re-Association Failure",headerAttributes:{ style:"text-align:center"}},
{ field: "f_EAP", title: "EAP Failure" ,headerAttributes:{ style:"text-align:center"}},
{ field: "f_EAPOL", title: "EAPOL Failure",headerAttributes:{ style:"text-align:center"}},
{ field: "f_Data", title: "Data Failure",headerAttributes:{ style:"text-align:center"}},
{ field: "f_DHCP", title: "DHCP Failure",headerAttributes:{ style:"text-align:center"}},
{ field: "Data", title: "Data Packets",headerAttributes:{ style:"text-align:center"}},
{ field: "Total", title: "Total Packets",headerAttributes:{ style:"text-align:center"}}
]
});
グリッド「デバイス」の2番目の列は、各列項目が特定のページを指すとハイパーリンクです。ユーザーが行項目をクリックすると、剣道グリッドがクリックを記憶し、その行項目の色をそれに応じて変更する機能を追加します。 どうすればよいですか(青から多分紫色に変わります)私がする?
行全体ではなく、その行要素(ハイパーリンク)の色を変更したいだけです。また、私はこのコードをどこに置くのですか? –
ありがとう、それはトリックでした。セルブロック全体ではなく、hrefリンクの色だけを変更できるといいですね。 –
これもできます...このCSSルールを 'td.activeTd a {color:violet; } ' –