Hello,
my table is showing tasks for technicians. Every row represents a task.
I'm try using the ajax option. It's working very well if i have only text in the columns. But in my rows I've some Buttons (Show -> Opens a new href with detail information another button opens the workflow modal to send and accept tasks from another user).
My html
<tr class="odd" role="row">
<td>...</td>
<td>...</td>
<td class="sorting_1">...</td>
<td class="">...</td>
<td>05.03.2015, 06:07</td>
<td>...</td>
<td>...</td>
<td>-</td>
<td>
<button id="workflowBtn" class="btn btn-success workflow btn-padding" data-id="37005"><span class="glyphicon glyphicon-transfer" aria-hidden="true"> </span></button>
</td>
<td>
<a class="btn btn-default" target="_blank" href="http://..."><span class="glyphicon glyphicon-tags" aria-hidden="true"></span></a>
</td>
<td>
<a class="btn btn-default" target="_blank" href="....."><span class="glyphicon glyphicon-book" aria-hidden="true"></span></a>
</td>
<td>
<a class="btn btn-info" href="/Task/ShowTask/37005"><span class="glyphicon glyphicon-search" aria-hidden="true"></span> Details</a>
</td>
</tr>
<tr class="odd"><td></td><td colspan="11">....</td></tr>
My controller returns (the last 4 "" are the buttons..):
return Json(new
{
draw = param.draw,
recordsTotal = nonfilteredcount,
recordsFiltered = filteredCount,
data = taskList.ToList()
.Select(r => new[] {
r.Task.Text,
r.Task.Tid,
r.Task.Subject,
r.Terminal.Address.ToString(),
r.Task.RemindDate + "",
r.State,
r.Task.ServiceID + "",
r.LastTimeRecord + "",
"",
"",
"",
""
}
)
}, JsonRequestBehavior.AllowGet);
How can I redraw the buttons with Json? Is there maybe a solution?
Thx a lot and BR