Hi,
We're looking for recommendations on building editable data grids. We'd like it to be free such as WebGrid but fairly easy to implement, maintain and customize.https://xender.vip/
I consider WebGrid to be an option but wanted to get a sense of what the community uses before we start implementing hundreds of pages that we'll need this ability.https://nox.tips/
Much appreciated.
|
Index.cshtml
<ejs-grid id="Grid" allowPaging="true" dataSource="ViewBag.DataSource" toolbar="@(new List<string>() {"Add", "Edit", "Update", "Delete" })">
<e-grid-editSettings allowAdding="true" allowDeleting="true" allowEditing="true" mode="Normal" ></e-grid-editSettings>
<e-grid-columns>
<e-grid-column field="OrderID" headerText="Order ID" isPrimaryKey="true" textAlign="Right" width="100"></e-grid-column>
<e-grid-column field="CustomerID" headerText="Customer ID" type="string" validationRules="@(new { required= true })" width="120"></e-grid-column>
<e-grid-column field="Freight" headerText="Freight" textAlign="Right" format="C2" editType="numericedit" width="120"></e-grid-column>
<e-grid-column field="ShipCity" headerText="Ship City" width="150"></e-grid-column>
</e-grid-columns>
</ejs-grid>
<script>
</script> |