hello,
I just generate mvs view from scaffolding process and apply javascript
.
.
. <td>
@Html.ActionLink("Edit", "Edit", new { id=item.ID_EMPRESA }) |
@Html.ActionLink("Details", "Details", new { id=item.ID_EMPRESA }) |
@Html.ActionLink("Delete", "Delete", new { id=item.ID_EMPRESA })
</td>
</tr>
}
</table>
<script>
$(document).ready(function() {
$(".table").kendoGrid({
sortable: true
});
});
</script>
After that the 3 links to edit details and delete does not appers in the collumn
Any compatilibity issue?
Thanks
I just generate mvs view from scaffolding process and apply javascript
.
.
. <td>
@Html.ActionLink("Edit", "Edit", new { id=item.ID_EMPRESA }) |
@Html.ActionLink("Details", "Details", new { id=item.ID_EMPRESA }) |
@Html.ActionLink("Delete", "Delete", new { id=item.ID_EMPRESA })
</td>
</tr>
}
</table>
<script>
$(document).ready(function() {
$(".table").kendoGrid({
sortable: true
});
});
</script>
After that the 3 links to edit details and delete does not appers in the collumn
Any compatilibity issue?
Thanks