BoldSignEasily embed eSignatures in your .NET applications. Free sandbox with native SDK available.
@{
var DropDownList = new Syncfusion.EJ2.DropDowns.DropDownList() { BeforeOpen = "beforeOpen" };
}
<ejs-grid id="grid" height="100%" width="100%" dataSource=ViewBag.data>
<e-grid-editSettings allowEditing="true"></e-grid-editSettings>
<e-grid-columns>
. . .
<e-grid-column field="ShipCountry" headerText="Ship Country" width="150" editType="dropdownedit" edit="new {@params = DropDownList }"></e-grid-column>
</e-grid-columns>
</ejs-grid>
<script>
function beforeOpen(e) {
this.popupWidth = "300px";
}
</script> |