BoldSignEasily embed eSignatures in your .NET applications. Free sandbox with native SDK available.
...
@Html.EJS().Grid("Grid").DataSource((IEnumerable<object>)ViewBag.datasource).Columns(col =>
{...
}).AllowPaging().CellEdit("cellEdit").EditSettings(edit => { edit.AllowAdding(true).AllowEditing(true).AllowDeleting(true).Mode(Syncfusion.EJ2.Grids.EditMode.Batch); })...}).Render()
<script>
function cellEdit(args){
setTimeout(function selectText() {
this.cell.querySelector('input').select();
}.bind(args), 0);
}
</script>
... |