Hey Guys,
How can I show the ClearButton in the Grid Modal?
Is there any possibility, to do it like a normal DropDown edit?
Best Regards
|
@{
var ddParams = new { @params = new { showClearButton = true } };
}
<div id="parent">
<ejs-grid id="Grid" dataSource="@ViewBag.Data" >
<e-grid-columns>
<e-grid-column field="ShipCountry" editType="dropdownedit" edit=ddParams></e-grid-column>
</e-grid-columns>
</ejs-grid>
</div> |
Hey Guys,
Thanks a lot, works like charm :-D
Best Regards :-)