This question is locked. New answers and comments are not allowed.
Hi,
I have a custom header template like this.
.HeaderTemplate(() => {
%>
<div class="t-link">
<a class="FloatLeft" onclick="CustomAjaxSort(event,'FirstName');"><strong>First</strong></a>
<div class="FloatLeft CursorDefault"><strong> / </strong></div>
<a class="FloatLeft" onclick="CustomAjaxSort(event,'LastName');"><strong>Last Name</strong></a>
<span class="t-icon t-arrow-down" style="display: none;">(sorted descending)</span>
</div>
<% })
how can I implement ajax sorting for this column?
I have a custom header template like this.
.HeaderTemplate(() => {
%>
<div class="t-link">
<a class="FloatLeft" onclick="CustomAjaxSort(event,'FirstName');"><strong>First</strong></a>
<div class="FloatLeft CursorDefault"><strong> / </strong></div>
<a class="FloatLeft" onclick="CustomAjaxSort(event,'LastName');"><strong>Last Name</strong></a>
<span class="t-icon t-arrow-down" style="display: none;">(sorted descending)</span>
</div>
<% })
how can I implement ajax sorting for this column?