BoldSignEasily embed eSignatures in your .NET applications. Free sandbox with native SDK available.
customValueSelection
event to fire. I can get select to respond but then I'm struggling with that removal step.
<div id='multiselect' class='col-lg-6' style='padding-top:15px'>
<ejs-multiselect id="txtTo" allowCustomValue="true" select="tochange" customValueSelection="onCustomSelection" placeholder="To" delimiterChar=";" floatLabelType="Auto">
<e-multiselect-fields text="EMAIL" value="EMAIL"></e-multiselect-fields>
</ejs-multiselect>
</div> |
<script>
function onCustomSelection(args) {
args.cancel = true; // restring the custom value selection.
}
function tochange(e) {
args.cancel = true; // restrict the select value.
}
</script>
|