「ターゲット0」:「レンダリング」:「アンカータグ」私のajaxレンダリングプロパティのアンカータグでグリフコンを変更するには?
私は最初に「グリフコングリフコンシェブロン右」を使用しています。 "glyphicon glyphicon-chevron-down"にonclickを変更したいと思います。
$(document).ready(function() {
$("#PageNo").text(currentPage);
tblErrorLog = $('#tblErrorLog').DataTable(
{
serverSide: true,
ajax: {
url: '@Url.Content("~/ErrorLogs/ErrorLogDataSaurce")',
data: ErrorLogParameter,
dataSrc: ErrorLogGridDataBound,
type: "POST"
},
select: true,
paging: false,
searching: false,
info: false,
columnDefs: [
{
targets: 0,
render: function (data, type, full, meta) {
return '<a id=' + full.ID + ' onclick="return ViewErrorDetails(' + full.ID + ')"><i class="glyphicon glyphicon-chevron-right"></i></a>'
}
},
{
targets: 1,
data: "Message",
orderable: true
},
{
targets: 2,
data: "Source",
orderable: true
},
],
});
});
もごViewErrorDetailsを追加()関数。 – Bharat