2
My code here:
View:
<tbody>
@for (int i = 0; i < Model.lNaoIncluidos.Count; i++){
<tr>
<td style="text-align: center;">
<span data-toggle="tooltip" data-placement="top" title="Informações do BIC"><i class="fa fa-info-circle btnModal"></i></span>
</td>
<td style="text-align: center;">
<span>@Html.DisplayFor(m => Model.lNaoIncluidos[i].ID_Info)</span>
</td>
</tr>
}
</tbody>
By clicking on the icon that has the btnModal class in the first "td", I would like to call an AJAX to select and bring other information based on Id_info. How can I do?
Thank you very much!
– Jhonathan Araujo