Current Project Context
I am currently following a tutorial on CRUD operations with DataTables, but I am using Asp.Net WebApi with Angular for this project.
At step 9 of the tutorial, it introduces partial views for pop-up windows. However, instead of using partial views, I have opted to use Angular Views.
Issue at Hand
I am now facing the challenge of replacing the partial View with my Angular View.
Snippet: Template Code
<table class="table table-striped table-hover table-bordered dt-bootstrap no-footer" id="tabla_catalogos" role="grid" aria-describedby="sample_editable_1_info">
<thead>
<tr>
<th class="hidden"></th>
<th style="width: 200px;"> Code </th>
<th> Name </th>
</tr>
</thead>
<tbody></tbody>
</table>