BoldSignEasily embed eSignatures in your .NET applications. Free sandbox with native SDK available.
<template>
<div id="app">
<ejs-grid id="Grid" ref="grid" allowFiltering=true :filterSettings='filter' :actionBegin='actionBegin' :dataSource="data">
<e-columns>
<e-column field="OrderID" headerText="Order ID" width="90"></e-column>
<e-column field="CustomerID" headerText="Customer ID" format="C2" width="90"></e-column>
<e-column field="ShipCity" headerText="Telefon" width="150" textAlign="Center"></e-column>
</e-columns>
</ejs-grid>
</div>
</template>
<script>
. . .
export default {
data() {
return {
data: data,
filterSettings:{type:"CheckBox"}
}
},
methods: {
actionBegin:function(e){
if(e.requestType === 'filtersearchbegin' && e.columnName === 'CustomerID'){
e.operator = 'contains';
}
}
},
provide: {
grid: [Page, Filter]
}
};
</script>
|